mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
tests/libqos: Move the libqos files under tests/qtest/
The qos stuff belongs to qtest, so move it into that directory, too. Message-Id: <20191218103059.11729-8-thuth@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
833884f37a
commit
1cf4323ecd
74 changed files with 46 additions and 47 deletions
|
@ -1102,9 +1102,9 @@ F: pc-bios/slof.bin
|
|||
F: docs/specs/ppc-spapr-hcalls.txt
|
||||
F: docs/specs/ppc-spapr-hotplug.txt
|
||||
F: tests/qtest/spapr*
|
||||
F: tests/libqos/*spapr*
|
||||
F: tests/qtest/libqos/*spapr*
|
||||
F: tests/qtest/rtas*
|
||||
F: tests/libqos/rtas*
|
||||
F: tests/qtest/libqos/rtas*
|
||||
|
||||
PowerNV (Non-Virtualized)
|
||||
M: Cédric Le Goater <clg@kaod.org>
|
||||
|
@ -1363,7 +1363,7 @@ F: hw/block/hd-geometry.c
|
|||
F: tests/qtest/ide-test.c
|
||||
F: tests/qtest/ahci-test.c
|
||||
F: tests/qtest/cdrom-test.c
|
||||
F: tests/libqos/ahci*
|
||||
F: tests/qtest/libqos/ahci*
|
||||
T: git https://github.com/jnsnow/qemu.git ide
|
||||
|
||||
IPMI
|
||||
|
@ -1776,7 +1776,7 @@ F: hw/nvram/fw_cfg.c
|
|||
F: stubs/fw_cfg.c
|
||||
F: include/hw/nvram/fw_cfg.h
|
||||
F: include/standard-headers/linux/qemu_fw_cfg.h
|
||||
F: tests/libqos/fw_cfg.c
|
||||
F: tests/qtest/libqos/fw_cfg.c
|
||||
F: tests/qtest/fw_cfg-test.c
|
||||
T: git https://github.com/philmd/qemu.git fw_cfg-next
|
||||
|
||||
|
@ -2137,7 +2137,6 @@ R: Paolo Bonzini <pbonzini@redhat.com>
|
|||
S: Maintained
|
||||
F: qtest.c
|
||||
F: accel/qtest.c
|
||||
F: tests/libqos/
|
||||
F: tests/qtest/
|
||||
|
||||
Register API
|
||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -7963,8 +7963,8 @@ fi
|
|||
# so the build tree will be missing the link back to the new file, and
|
||||
# tests might fail. Prefer to keep the relevant files in their own
|
||||
# directory and symlink the directory instead.
|
||||
DIRS="tests tests/tcg tests/tcg/lm32 tests/libqos tests/qapi-schema tests/qtest"
|
||||
DIRS="$DIRS tests/qemu-iotests tests/vm tests/fp tests/qgraph"
|
||||
DIRS="tests tests/tcg tests/tcg/lm32 tests/qapi-schema tests/qtest/libqos"
|
||||
DIRS="$DIRS tests/qtest tests/qemu-iotests tests/vm tests/fp tests/qgraph"
|
||||
DIRS="$DIRS docs docs/interop fsdev scsi"
|
||||
DIRS="$DIRS pc-bios/optionrom pc-bios/s390-ccw"
|
||||
DIRS="$DIRS roms/seabios roms/vgabios"
|
||||
|
|
|
@ -912,6 +912,6 @@ all: $(QEMU_IOTESTS_HELPERS-y)
|
|||
|
||||
-include $(wildcard tests/*.d)
|
||||
-include $(wildcard tests/qtest/*.d)
|
||||
-include $(wildcard tests/libqos/*.d)
|
||||
-include $(wildcard tests/qtest/qos/*.d)
|
||||
|
||||
endif
|
||||
|
|
|
@ -155,52 +155,52 @@ check-qtest-s390x-y += cpu-plug-test
|
|||
check-qtest-s390x-y += migration-test
|
||||
|
||||
# libqos / qgraph :
|
||||
libqgraph-obj-y = tests/libqos/qgraph.o
|
||||
libqgraph-obj-y = tests/qtest/libqos/qgraph.o
|
||||
|
||||
libqos-obj-y = $(libqgraph-obj-y) tests/libqos/pci.o tests/libqos/fw_cfg.o
|
||||
libqos-obj-y += tests/libqos/malloc.o
|
||||
libqos-obj-y += tests/libqos/libqos.o
|
||||
libqos-spapr-obj-y = $(libqos-obj-y) tests/libqos/malloc-spapr.o
|
||||
libqos-spapr-obj-y += tests/libqos/libqos-spapr.o
|
||||
libqos-spapr-obj-y += tests/libqos/rtas.o
|
||||
libqos-spapr-obj-y += tests/libqos/pci-spapr.o
|
||||
libqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o
|
||||
libqos-pc-obj-y += tests/libqos/malloc-pc.o tests/libqos/libqos-pc.o
|
||||
libqos-pc-obj-y += tests/libqos/ahci.o
|
||||
libqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/usb.o
|
||||
libqos-obj-y = $(libqgraph-obj-y) tests/qtest/libqos/pci.o tests/qtest/libqos/fw_cfg.o
|
||||
libqos-obj-y += tests/qtest/libqos/malloc.o
|
||||
libqos-obj-y += tests/qtest/libqos/libqos.o
|
||||
libqos-spapr-obj-y = $(libqos-obj-y) tests/qtest/libqos/malloc-spapr.o
|
||||
libqos-spapr-obj-y += tests/qtest/libqos/libqos-spapr.o
|
||||
libqos-spapr-obj-y += tests/qtest/libqos/rtas.o
|
||||
libqos-spapr-obj-y += tests/qtest/libqos/pci-spapr.o
|
||||
libqos-pc-obj-y = $(libqos-obj-y) tests/qtest/libqos/pci-pc.o
|
||||
libqos-pc-obj-y += tests/qtest/libqos/malloc-pc.o tests/qtest/libqos/libqos-pc.o
|
||||
libqos-pc-obj-y += tests/qtest/libqos/ahci.o
|
||||
libqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/qtest/libqos/usb.o
|
||||
|
||||
# qos devices:
|
||||
qos-test-obj-y = tests/qtest/qos-test.o $(libqgraph-obj-y)
|
||||
qos-test-obj-y += $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
|
||||
qos-test-obj-y += tests/libqos/e1000e.o
|
||||
qos-test-obj-y += tests/libqos/i2c.o
|
||||
qos-test-obj-y += tests/libqos/i2c-imx.o
|
||||
qos-test-obj-y += tests/libqos/i2c-omap.o
|
||||
qos-test-obj-y += tests/libqos/sdhci.o
|
||||
qos-test-obj-y += tests/libqos/tpci200.o
|
||||
qos-test-obj-y += tests/libqos/virtio.o
|
||||
qos-test-obj-$(CONFIG_VIRTFS) += tests/libqos/virtio-9p.o
|
||||
qos-test-obj-y += tests/libqos/virtio-balloon.o
|
||||
qos-test-obj-y += tests/libqos/virtio-blk.o
|
||||
qos-test-obj-y += tests/libqos/virtio-mmio.o
|
||||
qos-test-obj-y += tests/libqos/virtio-net.o
|
||||
qos-test-obj-y += tests/libqos/virtio-pci.o
|
||||
qos-test-obj-y += tests/libqos/virtio-pci-modern.o
|
||||
qos-test-obj-y += tests/libqos/virtio-rng.o
|
||||
qos-test-obj-y += tests/libqos/virtio-scsi.o
|
||||
qos-test-obj-y += tests/libqos/virtio-serial.o
|
||||
qos-test-obj-y += tests/qtest/libqos/e1000e.o
|
||||
qos-test-obj-y += tests/qtest/libqos/i2c.o
|
||||
qos-test-obj-y += tests/qtest/libqos/i2c-imx.o
|
||||
qos-test-obj-y += tests/qtest/libqos/i2c-omap.o
|
||||
qos-test-obj-y += tests/qtest/libqos/sdhci.o
|
||||
qos-test-obj-y += tests/qtest/libqos/tpci200.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio.o
|
||||
qos-test-obj-$(CONFIG_VIRTFS) += tests/qtest/libqos/virtio-9p.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-balloon.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-blk.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-mmio.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-net.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-pci.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-pci-modern.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-rng.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-scsi.o
|
||||
qos-test-obj-y += tests/qtest/libqos/virtio-serial.o
|
||||
|
||||
# qos machines:
|
||||
qos-test-obj-y += tests/libqos/aarch64-xlnx-zcu102-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-imx25-pdk-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-n800-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-raspi2-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-sabrelite-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-smdkc210-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-virt-machine.o
|
||||
qos-test-obj-y += tests/libqos/arm-xilinx-zynq-a9-machine.o
|
||||
qos-test-obj-y += tests/libqos/ppc64_pseries-machine.o
|
||||
qos-test-obj-y += tests/libqos/x86_64_pc-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/aarch64-xlnx-zcu102-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-imx25-pdk-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-n800-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-raspi2-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-sabrelite-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-smdkc210-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-virt-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/arm-xilinx-zynq-a9-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/ppc64_pseries-machine.o
|
||||
qos-test-obj-y += tests/qtest/libqos/x86_64_pc-machine.o
|
||||
|
||||
# qos tests:
|
||||
qos-test-obj-y += tests/qtest/ac97-test.o
|
||||
|
|
Loading…
Reference in a new issue