1e45eaef9SFam Zheng 2e45eaef9SFam Zheng.PHONY: check-help 3e45eaef9SFam Zhengcheck-help: 4e45eaef9SFam Zheng @echo "Regression testing targets:" 5e45eaef9SFam Zheng @echo 6b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check Run all tests" 7b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-qtest-TARGET Run qtest tests for given target" 8b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-qtest Run qtest tests" 9b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-unit Run qobject tests" 10b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-speed Run qobject speed tests" 11b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-qapi-schema Run QAPI schema tests" 12b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-block Run block tests" 13b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-report.html Generates an HTML test report" 14b98a3baeSPhilippe Mathieu-Daudé @echo " $(MAKE) check-clean Clean the tests" 15e45eaef9SFam Zheng @echo 16e45eaef9SFam Zheng @echo "Please note that HTML reports do not regenerate if the unit tests" 17e45eaef9SFam Zheng @echo "has not changed." 18e45eaef9SFam Zheng @echo 19e45eaef9SFam Zheng @echo "The variable SPEED can be set to control the gtester speed setting." 20b98a3baeSPhilippe Mathieu-Daudé @echo "Default options are -k and (for $(MAKE) V=1) --verbose; they can be" 21e45eaef9SFam Zheng @echo "changed with variable GTESTER_OPTIONS." 22e45eaef9SFam Zheng 23e45eaef9SFam Zhengifneq ($(wildcard config-host.mak),) 2446e7b706SFam Zhengexport SRC_PATH 2546e7b706SFam Zheng 2646e7b706SFam Zhengqapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py 2746e7b706SFam Zheng 2846e7b706SFam Zheng# Get the list of all supported sysemu targets 2946e7b706SFam ZhengSYSEMU_TARGET_LIST := $(subst -softmmu.mak,,$(notdir \ 3046e7b706SFam Zheng $(wildcard $(SRC_PATH)/default-configs/*-softmmu.mak))) 3146e7b706SFam Zheng 3246e7b706SFam Zhengcheck-unit-y = tests/check-qdict$(EXESUF) 3346e7b706SFam Zhenggcov-files-check-qdict-y = qobject/qdict.c 344429532bSMarkus Armbrustercheck-unit-y += tests/test-char$(EXESUF) 35178fe0aeSMarc-André Lureaugcov-files-check-qdict-y = chardev/char.c 3601b2ffceSMarc-André Lureaucheck-unit-y += tests/check-qnum$(EXESUF) 3701b2ffceSMarc-André Lureaugcov-files-check-qnum-y = qobject/qnum.c 3846e7b706SFam Zhengcheck-unit-y += tests/check-qstring$(EXESUF) 3946e7b706SFam Zhenggcov-files-check-qstring-y = qobject/qstring.c 4046e7b706SFam Zhengcheck-unit-y += tests/check-qlist$(EXESUF) 4146e7b706SFam Zhenggcov-files-check-qlist-y = qobject/qlist.c 4246e7b706SFam Zhengcheck-unit-y += tests/check-qnull$(EXESUF) 4346e7b706SFam Zhenggcov-files-check-qnull-y = qobject/qnull.c 441b76e838SMax Reitzcheck-unit-y += tests/check-qobject$(EXESUF) 4546e7b706SFam Zhengcheck-unit-y += tests/check-qjson$(EXESUF) 4646e7b706SFam Zhenggcov-files-check-qjson-y = qobject/qjson.c 47382176b4SMarc-André Lureaucheck-unit-y += tests/check-qlit$(EXESUF) 48382176b4SMarc-André Lureaugcov-files-check-qlit-y = qobject/qlit.c 49b3db211fSDaniel P. Berrangecheck-unit-y += tests/test-qobject-output-visitor$(EXESUF) 50b3db211fSDaniel P. Berrangegcov-files-test-qobject-output-visitor-y = qapi/qobject-output-visitor.c 51a15fcc3cSEric Blakecheck-unit-y += tests/test-clone-visitor$(EXESUF) 52a15fcc3cSEric Blakegcov-files-test-clone-visitor-y = qapi/qapi-clone-visitor.c 53b3db211fSDaniel P. Berrangecheck-unit-y += tests/test-qobject-input-visitor$(EXESUF) 54b3db211fSDaniel P. Berrangegcov-files-test-qobject-input-visitor-y = qapi/qobject-input-visitor.c 5546e7b706SFam Zhengcheck-unit-y += tests/test-qmp-commands$(EXESUF) 5646e7b706SFam Zhenggcov-files-test-qmp-commands-y = qapi/qmp-dispatch.c 5746e7b706SFam Zhengcheck-unit-y += tests/test-string-input-visitor$(EXESUF) 5846e7b706SFam Zhenggcov-files-test-string-input-visitor-y = qapi/string-input-visitor.c 5946e7b706SFam Zhengcheck-unit-y += tests/test-string-output-visitor$(EXESUF) 6046e7b706SFam Zhenggcov-files-test-string-output-visitor-y = qapi/string-output-visitor.c 6146e7b706SFam Zhengcheck-unit-y += tests/test-qmp-event$(EXESUF) 6246e7b706SFam Zhenggcov-files-test-qmp-event-y += qapi/qmp-event.c 6346e7b706SFam Zhengcheck-unit-y += tests/test-opts-visitor$(EXESUF) 6446e7b706SFam Zhenggcov-files-test-opts-visitor-y = qapi/opts-visitor.c 6546e7b706SFam Zhengcheck-unit-y += tests/test-coroutine$(EXESUF) 6646e7b706SFam Zhenggcov-files-test-coroutine-y = coroutine-$(CONFIG_COROUTINE_BACKEND).c 6746e7b706SFam Zhengcheck-unit-y += tests/test-visitor-serialization$(EXESUF) 6846e7b706SFam Zhengcheck-unit-y += tests/test-iov$(EXESUF) 6946e7b706SFam Zhenggcov-files-test-iov-y = util/iov.c 7046e7b706SFam Zhengcheck-unit-y += tests/test-aio$(EXESUF) 71c2b38b27SPaolo Bonzinigcov-files-test-aio-y = util/async.c util/qemu-timer.o 72c2b38b27SPaolo Bonzinigcov-files-test-aio-$(CONFIG_WIN32) += util/aio-win32.c 73c2b38b27SPaolo Bonzinigcov-files-test-aio-$(CONFIG_POSIX) += util/aio-posix.c 740c330a73SPaolo Bonzinicheck-unit-y += tests/test-aio-multithread$(EXESUF) 750c330a73SPaolo Bonzinigcov-files-test-aio-multithread-y = $(gcov-files-test-aio-y) 760c330a73SPaolo Bonzinigcov-files-test-aio-multithread-y += util/qemu-coroutine.c tests/iothread.c 7746e7b706SFam Zhengcheck-unit-y += tests/test-throttle$(EXESUF) 7846e7b706SFam Zhengcheck-unit-y += tests/test-thread-pool$(EXESUF) 7946e7b706SFam Zhenggcov-files-test-thread-pool-y = thread-pool.c 8046e7b706SFam Zhenggcov-files-test-hbitmap-y = util/hbitmap.c 8146e7b706SFam Zhengcheck-unit-y += tests/test-hbitmap$(EXESUF) 8246e7b706SFam Zhenggcov-files-test-hbitmap-y = blockjob.c 83*881cfd17SKevin Wolfcheck-unit-y += tests/test-bdrv-drain$(EXESUF) 849ef8112aSAlberto Garciacheck-unit-y += tests/test-blockjob$(EXESUF) 8546e7b706SFam Zhengcheck-unit-y += tests/test-blockjob-txn$(EXESUF) 8646e7b706SFam Zhengcheck-unit-y += tests/test-x86-cpuid$(EXESUF) 8746e7b706SFam Zheng# all code tested by test-x86-cpuid is inside topology.h 8846e7b706SFam Zhenggcov-files-test-x86-cpuid-y = 8946e7b706SFam Zhengifeq ($(CONFIG_SOFTMMU),y) 9046e7b706SFam Zhengcheck-unit-y += tests/test-xbzrle$(EXESUF) 9146e7b706SFam Zhenggcov-files-test-xbzrle-y = migration/xbzrle.c 9246e7b706SFam Zhengcheck-unit-$(CONFIG_POSIX) += tests/test-vmstate$(EXESUF) 9346e7b706SFam Zhengendif 9446e7b706SFam Zhengcheck-unit-y += tests/test-cutils$(EXESUF) 9546e7b706SFam Zhenggcov-files-test-cutils-y += util/cutils.c 96f539fbe3SJose Ricardo Zivianicheck-unit-y += tests/test-shift128$(EXESUF) 97f539fbe3SJose Ricardo Zivianigcov-files-test-shift128-y = util/host-utils.c 9846e7b706SFam Zhengcheck-unit-y += tests/test-mul64$(EXESUF) 9946e7b706SFam Zhenggcov-files-test-mul64-y = util/host-utils.c 10046e7b706SFam Zhengcheck-unit-y += tests/test-int128$(EXESUF) 10146e7b706SFam Zheng# all code tested by test-int128 is inside int128.h 10246e7b706SFam Zhenggcov-files-test-int128-y = 10346e7b706SFam Zhengcheck-unit-y += tests/rcutorture$(EXESUF) 10446e7b706SFam Zhenggcov-files-rcutorture-y = util/rcu.c 10546e7b706SFam Zhengcheck-unit-y += tests/test-rcu-list$(EXESUF) 10646e7b706SFam Zhenggcov-files-test-rcu-list-y = util/rcu.c 107ff9249b7SEmilio G. Cotacheck-unit-y += tests/test-qdist$(EXESUF) 108ff9249b7SEmilio G. Cotagcov-files-test-qdist-y = util/qdist.c 1091a95404fSEmilio G. Cotacheck-unit-y += tests/test-qht$(EXESUF) 1101a95404fSEmilio G. Cotagcov-files-test-qht-y = util/qht.c 111896a9ee9SEmilio G. Cotacheck-unit-y += tests/test-qht-par$(EXESUF) 112896a9ee9SEmilio G. Cotagcov-files-test-qht-par-y = util/qht.c 11346e7b706SFam Zhengcheck-unit-y += tests/test-bitops$(EXESUF) 114c3f8962fSAlex Bennéecheck-unit-y += tests/test-bitcnt$(EXESUF) 11546e7b706SFam Zhengcheck-unit-$(CONFIG_HAS_GLIB_SUBPROCESS_TESTS) += tests/test-qdev-global-props$(EXESUF) 11646e7b706SFam Zhengcheck-unit-y += tests/check-qom-interface$(EXESUF) 11746e7b706SFam Zhenggcov-files-check-qom-interface-y = qom/object.c 11846e7b706SFam Zhengcheck-unit-y += tests/check-qom-proplist$(EXESUF) 11946e7b706SFam Zhenggcov-files-check-qom-proplist-y = qom/object.c 12046e7b706SFam Zhengcheck-unit-y += tests/test-qemu-opts$(EXESUF) 121112c9446SMarkus Armbrustergcov-files-test-qemu-opts-y = util/qemu-option.c 122d454dbe0SMarkus Armbrustercheck-unit-y += tests/test-keyval$(EXESUF) 123d454dbe0SMarkus Armbrustergcov-files-test-keyval-y = util/keyval.c 12446e7b706SFam Zhengcheck-unit-y += tests/test-write-threshold$(EXESUF) 12546e7b706SFam Zhenggcov-files-test-write-threshold-y = block/write-threshold.c 1260c16c056SDaniel P. Berrangecheck-unit-y += tests/test-crypto-hash$(EXESUF) 1270128cd29SLongpeng(Mike)check-speed-y += tests/benchmark-crypto-hash$(EXESUF) 1284fd460bfSLongpeng(Mike)check-unit-y += tests/test-crypto-hmac$(EXESUF) 129c7a9af4bSLongpeng(Mike)check-speed-y += tests/benchmark-crypto-hmac$(EXESUF) 13046e7b706SFam Zhengcheck-unit-y += tests/test-crypto-cipher$(EXESUF) 1311efd9d5eSLongpeng(Mike)check-speed-y += tests/benchmark-crypto-cipher$(EXESUF) 13246e7b706SFam Zhengcheck-unit-y += tests/test-crypto-secret$(EXESUF) 13346e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlscredsx509$(EXESUF) 13446e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlssession$(EXESUF) 13546e7b706SFam Zhengifneq (,$(findstring qemu-ga,$(TOOLS))) 13646e7b706SFam Zhengcheck-unit-$(CONFIG_LINUX) += tests/test-qga$(EXESUF) 13746e7b706SFam Zhengendif 13846e7b706SFam Zhengcheck-unit-y += tests/test-timed-average$(EXESUF) 13946e7b706SFam Zhengcheck-unit-y += tests/test-io-task$(EXESUF) 14046e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-socket$(EXESUF) 14146e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-file$(EXESUF) 14246e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-io-channel-tls$(EXESUF) 14346e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-command$(EXESUF) 14446e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-buffer$(EXESUF) 14546e7b706SFam Zhengcheck-unit-y += tests/test-base64$(EXESUF) 14646e7b706SFam Zhengcheck-unit-$(if $(CONFIG_NETTLE_KDF),y,$(CONFIG_GCRYPT_KDF)) += tests/test-crypto-pbkdf$(EXESUF) 14746e7b706SFam Zhengcheck-unit-y += tests/test-crypto-ivgen$(EXESUF) 14846e7b706SFam Zhengcheck-unit-y += tests/test-crypto-afsplit$(EXESUF) 14946e7b706SFam Zhengcheck-unit-y += tests/test-crypto-xts$(EXESUF) 15046e7b706SFam Zhengcheck-unit-y += tests/test-crypto-block$(EXESUF) 15146e7b706SFam Zhengcheck-unit-y += tests/test-logging$(EXESUF) 152112c9446SMarkus Armbrustergcov-files-test-logging-y = util/log.c 153b3110466SChanglong Xiecheck-unit-$(CONFIG_REPLICATION) += tests/test-replication$(EXESUF) 154efad6682SRichard Hendersoncheck-unit-y += tests/test-bufferiszero$(EXESUF) 155efad6682SRichard Hendersongcov-files-check-bufferiszero-y = util/bufferiszero.c 156c739cdddSFam Zhengcheck-unit-y += tests/test-uuid$(EXESUF) 15724b94625SPaolo Bonzinicheck-unit-y += tests/ptimer-test$(EXESUF) 15824b94625SPaolo Bonzinigcov-files-ptimer-test-y = hw/core/ptimer.c 1596c873d11SMarkus Armbrustercheck-unit-y += tests/test-qapi-util$(EXESUF) 1606c873d11SMarkus Armbrustergcov-files-test-qapi-util-y = qapi/qapi-util.c 16146e7b706SFam Zheng 16246e7b706SFam Zhengcheck-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh 16346e7b706SFam Zheng 16446e7b706SFam Zheng# All QTests for now are POSIX-only, but the dependencies are 16546e7b706SFam Zheng# really in libqtest, not in the testcases themselves. 16646e7b706SFam Zheng 167f66e7ac8SMarkus Armbrustercheck-qtest-generic-y = tests/qmp-test$(EXESUF) 168f66e7ac8SMarkus Armbrustergcov-files-generic-y = monitor.c qapi/qmp-dispatch.c 169f66e7ac8SMarkus Armbrustercheck-qtest-generic-y += tests/device-introspect-test$(EXESUF) 17046e7b706SFam Zhenggcov-files-generic-y = qdev-monitor.c qmp.c 17146e7b706SFam Zheng 17246e7b706SFam Zhenggcov-files-ipack-y += hw/ipack/ipack.c 17346e7b706SFam Zhengcheck-qtest-ipack-y += tests/ipoctal232-test$(EXESUF) 17446e7b706SFam Zhenggcov-files-ipack-y += hw/char/ipoctal232.c 17546e7b706SFam Zheng 17646e7b706SFam Zhengcheck-qtest-virtioserial-y += tests/virtio-console-test$(EXESUF) 17746e7b706SFam Zhenggcov-files-virtioserial-y += hw/char/virtio-console.c 17846e7b706SFam Zheng 17946e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/virtio/virtio.c 18046e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-net-test$(EXESUF) 18146e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/net/virtio-net.c 18246e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-balloon-test$(EXESUF) 18346e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/virtio/virtio-balloon.c 18446e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-blk-test$(EXESUF) 18546e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/block/virtio-blk.c 18646e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-rng-test$(EXESUF) 18746e7b706SFam Zhenggcov-files-virtio-y += hw/virtio/virtio-rng.c 18846e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-scsi-test$(EXESUF) 18946e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/scsi/virtio-scsi.c 19046e7b706SFam Zhengifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy) 19146e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-9p-test$(EXESUF) 19246e7b706SFam Zhenggcov-files-virtio-y += hw/9pfs/virtio-9p.c 19346e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/9pfs/virtio-9p-device.c 19446e7b706SFam Zhengendif 19546e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-serial-test$(EXESUF) 19646e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/char/virtio-serial-bus.c 19746e7b706SFam Zhengcheck-qtest-virtio-y += $(check-qtest-virtioserial-y) 19846e7b706SFam Zhenggcov-files-virtio-y += $(gcov-files-virtioserial-y) 19946e7b706SFam Zheng 20046e7b706SFam Zhengcheck-qtest-pci-y += tests/e1000-test$(EXESUF) 20146e7b706SFam Zhenggcov-files-pci-y += hw/net/e1000.c 20246e7b706SFam Zhengcheck-qtest-pci-y += tests/e1000e-test$(EXESUF) 20346e7b706SFam Zhenggcov-files-pci-y += hw/net/e1000e.c hw/net/e1000e_core.c 20446e7b706SFam Zhengcheck-qtest-pci-y += tests/rtl8139-test$(EXESUF) 20546e7b706SFam Zhenggcov-files-pci-y += hw/net/rtl8139.c 20646e7b706SFam Zhengcheck-qtest-pci-y += tests/pcnet-test$(EXESUF) 20746e7b706SFam Zhenggcov-files-pci-y += hw/net/pcnet.c 20846e7b706SFam Zhenggcov-files-pci-y += hw/net/pcnet-pci.c 20946e7b706SFam Zhengcheck-qtest-pci-y += tests/eepro100-test$(EXESUF) 21046e7b706SFam Zhenggcov-files-pci-y += hw/net/eepro100.c 21146e7b706SFam Zhengcheck-qtest-pci-y += tests/ne2000-test$(EXESUF) 21246e7b706SFam Zhenggcov-files-pci-y += hw/net/ne2000.c 21346e7b706SFam Zhengcheck-qtest-pci-y += tests/nvme-test$(EXESUF) 21446e7b706SFam Zhenggcov-files-pci-y += hw/block/nvme.c 21546e7b706SFam Zhengcheck-qtest-pci-y += tests/ac97-test$(EXESUF) 21646e7b706SFam Zhenggcov-files-pci-y += hw/audio/ac97.c 21746e7b706SFam Zhengcheck-qtest-pci-y += tests/es1370-test$(EXESUF) 21846e7b706SFam Zhenggcov-files-pci-y += hw/audio/es1370.c 21946e7b706SFam Zhengcheck-qtest-pci-y += $(check-qtest-virtio-y) 22046e7b706SFam Zhenggcov-files-pci-y += $(gcov-files-virtio-y) hw/virtio/virtio-pci.c 22146e7b706SFam Zhengcheck-qtest-pci-y += tests/tpci200-test$(EXESUF) 22246e7b706SFam Zhenggcov-files-pci-y += hw/ipack/tpci200.c 22346e7b706SFam Zhengcheck-qtest-pci-y += $(check-qtest-ipack-y) 22446e7b706SFam Zhenggcov-files-pci-y += $(gcov-files-ipack-y) 22546e7b706SFam Zhengcheck-qtest-pci-y += tests/display-vga-test$(EXESUF) 22646e7b706SFam Zhenggcov-files-pci-y += hw/display/vga.c 22746e7b706SFam Zhenggcov-files-pci-y += hw/display/cirrus_vga.c 22846e7b706SFam Zhenggcov-files-pci-y += hw/display/vga-pci.c 22946e7b706SFam Zhenggcov-files-pci-y += hw/display/virtio-gpu.c 23046e7b706SFam Zhenggcov-files-pci-y += hw/display/virtio-gpu-pci.c 23146e7b706SFam Zhenggcov-files-pci-$(CONFIG_VIRTIO_VGA) += hw/display/virtio-vga.c 23246e7b706SFam Zhengcheck-qtest-pci-y += tests/intel-hda-test$(EXESUF) 23346e7b706SFam Zhenggcov-files-pci-y += hw/audio/intel-hda.c hw/audio/hda-codec.c 234e0580342SKamil Rytarowskicheck-qtest-pci-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF) 23546e7b706SFam Zhenggcov-files-pci-y += hw/misc/ivshmem.c 236660174fcSPaolo Bonzinicheck-qtest-pci-y += tests/megasas-test$(EXESUF) 237660174fcSPaolo Bonzinigcov-files-pci-y += hw/scsi/megasas.c 23846e7b706SFam Zheng 23946e7b706SFam Zhengcheck-qtest-i386-y = tests/endianness-test$(EXESUF) 24046e7b706SFam Zhengcheck-qtest-i386-y += tests/fdc-test$(EXESUF) 24146e7b706SFam Zhenggcov-files-i386-y = hw/block/fdc.c 24246e7b706SFam Zhengcheck-qtest-i386-y += tests/ide-test$(EXESUF) 24346e7b706SFam Zhengcheck-qtest-i386-y += tests/ahci-test$(EXESUF) 24446e7b706SFam Zhengcheck-qtest-i386-y += tests/hd-geo-test$(EXESUF) 24546e7b706SFam Zhenggcov-files-i386-y += hw/block/hd-geometry.c 24646e7b706SFam Zhengcheck-qtest-i386-y += tests/boot-order-test$(EXESUF) 24746e7b706SFam Zhengcheck-qtest-i386-y += tests/bios-tables-test$(EXESUF) 248d2ab58ffSThomas Huthcheck-qtest-i386-y += tests/boot-serial-test$(EXESUF) 249d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF) 25046e7b706SFam Zhengcheck-qtest-i386-y += tests/rtc-test$(EXESUF) 25146e7b706SFam Zhengcheck-qtest-i386-y += tests/ipmi-kcs-test$(EXESUF) 25246e7b706SFam Zhengcheck-qtest-i386-y += tests/ipmi-bt-test$(EXESUF) 25346e7b706SFam Zhengcheck-qtest-i386-y += tests/i440fx-test$(EXESUF) 25446e7b706SFam Zhengcheck-qtest-i386-y += tests/fw_cfg-test$(EXESUF) 25546e7b706SFam Zhengcheck-qtest-i386-y += tests/drive_del-test$(EXESUF) 25646e7b706SFam Zhengcheck-qtest-i386-y += tests/wdt_ib700-test$(EXESUF) 25746e7b706SFam Zhengcheck-qtest-i386-y += tests/tco-test$(EXESUF) 25846e7b706SFam Zhenggcov-files-i386-y += hw/watchdog/watchdog.c hw/watchdog/wdt_ib700.c 25946e7b706SFam Zhengcheck-qtest-i386-y += $(check-qtest-pci-y) 26046e7b706SFam Zhenggcov-files-i386-y += $(gcov-files-pci-y) 26146e7b706SFam Zhengcheck-qtest-i386-y += tests/vmxnet3-test$(EXESUF) 26246e7b706SFam Zhenggcov-files-i386-y += hw/net/vmxnet3.c 26346e7b706SFam Zhenggcov-files-i386-y += hw/net/net_rx_pkt.c 26446e7b706SFam Zhenggcov-files-i386-y += hw/net/net_tx_pkt.c 26546e7b706SFam Zhengcheck-qtest-i386-y += tests/pvpanic-test$(EXESUF) 26646e7b706SFam Zhenggcov-files-i386-y += i386-softmmu/hw/misc/pvpanic.c 26746e7b706SFam Zhengcheck-qtest-i386-y += tests/i82801b11-test$(EXESUF) 26846e7b706SFam Zhenggcov-files-i386-y += hw/pci-bridge/i82801b11.c 26946e7b706SFam Zhengcheck-qtest-i386-y += tests/ioh3420-test$(EXESUF) 27046e7b706SFam Zhenggcov-files-i386-y += hw/pci-bridge/ioh3420.c 27146e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-ohci-test$(EXESUF) 27246e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-ohci.c 27346e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-uhci-test$(EXESUF) 27446e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-uhci.c 27546e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-ehci-test$(EXESUF) 27646e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-ehci.c 27746e7b706SFam Zhenggcov-files-i386-y += hw/usb/dev-hid.c 27846e7b706SFam Zhenggcov-files-i386-y += hw/usb/dev-storage.c 27946e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-xhci-test$(EXESUF) 28046e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-xhci.c 28146e7b706SFam Zhengcheck-qtest-i386-y += tests/pc-cpu-test$(EXESUF) 28246e7b706SFam Zhengcheck-qtest-i386-y += tests/q35-test$(EXESUF) 28383f3c709SBen Warrencheck-qtest-i386-y += tests/vmgenid-test$(EXESUF) 28446e7b706SFam Zhenggcov-files-i386-y += hw/pci-host/q35.c 285e6a74868SMarc-André Lureaucheck-qtest-i386-$(CONFIG_VHOST_USER_NET_TEST_i386) += tests/vhost-user-test$(EXESUF) 286e6a74868SMarc-André Lureauifeq ($(CONFIG_VHOST_USER_NET_TEST_i386),) 287e6a74868SMarc-André Lureaucheck-qtest-x86_64-$(CONFIG_VHOST_USER_NET_TEST_x86_64) += tests/vhost-user-test$(EXESUF) 28846e7b706SFam Zhengendif 289d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF) 2907f57d58dSThomas Huthcheck-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF) 2917f57d58dSThomas Huthcheck-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF) 2922656bfd9SJuan Quintelacheck-qtest-i386-y += tests/migration-test$(EXESUF) 2936efef58eSEduardo Habkostcheck-qtest-i386-y += tests/test-x86-cpuid-compat$(EXESUF) 29463baf8bfSIgor Mammedovcheck-qtest-i386-y += tests/numa-test$(EXESUF) 2950ee2e9daSMarc-André Lureaucheck-qtest-x86_64-y += $(check-qtest-i386-y) 29646e7b706SFam Zhenggcov-files-i386-y += i386-softmmu/hw/timer/mc146818rtc.c 29746e7b706SFam Zhenggcov-files-x86_64-y = $(subst i386-softmmu/,x86_64-softmmu/,$(gcov-files-i386-y)) 29829531542SThomas Huth 299d2ab58ffSThomas Huthcheck-qtest-alpha-y = tests/boot-serial-test$(EXESUF) 300d2ab58ffSThomas Huth 301598a29f3SThomas Huthcheck-qtest-m68k-y = tests/boot-serial-test$(EXESUF) 302598a29f3SThomas Huth 30346e7b706SFam Zhengcheck-qtest-mips-y = tests/endianness-test$(EXESUF) 30429531542SThomas Huth 30546e7b706SFam Zhengcheck-qtest-mips64-y = tests/endianness-test$(EXESUF) 30629531542SThomas Huth 30746e7b706SFam Zhengcheck-qtest-mips64el-y = tests/endianness-test$(EXESUF) 30829531542SThomas Huth 30946e7b706SFam Zhengcheck-qtest-ppc-y = tests/endianness-test$(EXESUF) 31029531542SThomas Huthcheck-qtest-ppc-y += tests/boot-order-test$(EXESUF) 31129531542SThomas Huthcheck-qtest-ppc-y += tests/prom-env-test$(EXESUF) 31229531542SThomas Huthcheck-qtest-ppc-y += tests/drive_del-test$(EXESUF) 313d2ab58ffSThomas Huthcheck-qtest-ppc-y += tests/boot-serial-test$(EXESUF) 31429531542SThomas Huth 31529531542SThomas Huthcheck-qtest-ppc64-y = tests/spapr-phb-test$(EXESUF) 31629531542SThomas Huthgcov-files-ppc64-y = ppc64-softmmu/hw/ppc/spapr_pci.c 31729531542SThomas Huthcheck-qtest-ppc64-y += tests/endianness-test$(EXESUF) 31829531542SThomas Huthcheck-qtest-ppc64-y += tests/boot-order-test$(EXESUF) 31929531542SThomas Huthcheck-qtest-ppc64-y += tests/prom-env-test$(EXESUF) 320ca8e4bf4SDavid Gibsoncheck-qtest-ppc64-y += tests/pnv-xscom-test$(EXESUF) 32129531542SThomas Huthcheck-qtest-ppc64-y += tests/drive_del-test$(EXESUF) 3222656bfd9SJuan Quintelacheck-qtest-ppc64-y += tests/migration-test$(EXESUF) 323d2ab58ffSThomas Huthcheck-qtest-ppc64-y += tests/boot-serial-test$(EXESUF) 324eeddd59fSLaurent Viviercheck-qtest-ppc64-y += tests/rtas-test$(EXESUF) 325d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF) 326aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-ohci-test$(EXESUF) 327aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-ohci.c 328aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-uhci-test$(EXESUF) 329aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-uhci.c 330aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-xhci-test$(EXESUF) 331aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-xhci.c 33230ca440eSLaurent Viviercheck-qtest-ppc64-y += $(check-qtest-virtio-y) 333d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF) 3347f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF) 3357f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF) 336f38a0b2fSLaurent Viviercheck-qtest-ppc64-y += tests/display-vga-test$(EXESUF) 33763baf8bfSIgor Mammedovcheck-qtest-ppc64-y += tests/numa-test$(EXESUF) 338e0580342SKamil Rytarowskicheck-qtest-ppc64-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF) 33929531542SThomas Huth 34046e7b706SFam Zhengcheck-qtest-sh4-y = tests/endianness-test$(EXESUF) 34129531542SThomas Huth 34246e7b706SFam Zhengcheck-qtest-sh4eb-y = tests/endianness-test$(EXESUF) 34329531542SThomas Huth 34429531542SThomas Huthcheck-qtest-sparc-y = tests/prom-env-test$(EXESUF) 34529531542SThomas Huth#check-qtest-sparc-y += tests/m48t59-test$(EXESUF) 34629531542SThomas Huth#gcov-files-sparc-y = hw/timer/m48t59.c 34729531542SThomas Huth 34846e7b706SFam Zhengcheck-qtest-sparc64-y = tests/endianness-test$(EXESUF) 34946e7b706SFam Zheng#check-qtest-sparc64-y += tests/m48t59-test$(EXESUF) 35029531542SThomas Huth#gcov-files-sparc64-y += hw/timer/m48t59.c 3516b591ad6SThomas Huthcheck-qtest-sparc64-y += tests/prom-env-test$(EXESUF) 35229531542SThomas Huth 35346e7b706SFam Zhengcheck-qtest-arm-y = tests/tmp105-test$(EXESUF) 3541f5c1cfbSThomas Huthcheck-qtest-arm-y += tests/ds1338-test$(EXESUF) 3557a2334f7SCédric Le Goatercheck-qtest-arm-y += tests/m25p80-test$(EXESUF) 35646e7b706SFam Zhenggcov-files-arm-y += hw/misc/tmp105.c 35746e7b706SFam Zhengcheck-qtest-arm-y += tests/virtio-blk-test$(EXESUF) 35846e7b706SFam Zhenggcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c 359882fac37SDmitry Osipenkocheck-qtest-arm-y += tests/test-arm-mptimer$(EXESUF) 360882fac37SDmitry Osipenkogcov-files-arm-y += hw/timer/arm_mptimer.c 36129531542SThomas Huth 36263baf8bfSIgor Mammedovcheck-qtest-aarch64-y = tests/numa-test$(EXESUF) 36363baf8bfSIgor Mammedov 36446e7b706SFam Zhengcheck-qtest-microblazeel-y = $(check-qtest-microblaze-y) 36529531542SThomas Huth 36646e7b706SFam Zhengcheck-qtest-xtensaeb-y = $(check-qtest-xtensa-y) 36746e7b706SFam Zheng 368d2ab58ffSThomas Huthcheck-qtest-s390x-y = tests/boot-serial-test$(EXESUF) 369b1b2feacSThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF) 370ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF) 371ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF) 372ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF) 3732f84a92eSThomas Huthcheck-qtest-s390x-y += tests/drive_del-test$(EXESUF) 374d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-balloon-test$(EXESUF) 375d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-console-test$(EXESUF) 376d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-serial-test$(EXESUF) 377d2ab58ffSThomas Huth 37846e7b706SFam Zhengcheck-qtest-generic-y += tests/qom-test$(EXESUF) 37978f86a2bSThomas Huthcheck-qtest-generic-y += tests/test-hmp$(EXESUF) 38046e7b706SFam Zheng 38146e7b706SFam Zhengqapi-schema += alternate-any.json 38246e7b706SFam Zhengqapi-schema += alternate-array.json 38346e7b706SFam Zhengqapi-schema += alternate-base.json 38446e7b706SFam Zhengqapi-schema += alternate-clash.json 38546e7b706SFam Zhengqapi-schema += alternate-conflict-dict.json 386c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-bool.json 387c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-int.json 38846e7b706SFam Zhengqapi-schema += alternate-conflict-string.json 389fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-bool-string.json 390fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-num-string.json 39146e7b706SFam Zhengqapi-schema += alternate-empty.json 39246e7b706SFam Zhengqapi-schema += alternate-nested.json 39346e7b706SFam Zhengqapi-schema += alternate-unknown.json 39446e7b706SFam Zhengqapi-schema += args-alternate.json 39546e7b706SFam Zhengqapi-schema += args-any.json 39646e7b706SFam Zhengqapi-schema += args-array-empty.json 39746e7b706SFam Zhengqapi-schema += args-array-unknown.json 398c818408eSEric Blakeqapi-schema += args-bad-boxed.json 399c818408eSEric Blakeqapi-schema += args-boxed-anon.json 400c818408eSEric Blakeqapi-schema += args-boxed-empty.json 401c818408eSEric Blakeqapi-schema += args-boxed-string.json 40246e7b706SFam Zhengqapi-schema += args-int.json 40346e7b706SFam Zhengqapi-schema += args-invalid.json 40446e7b706SFam Zhengqapi-schema += args-member-array-bad.json 40546e7b706SFam Zhengqapi-schema += args-member-case.json 40646e7b706SFam Zhengqapi-schema += args-member-unknown.json 40746e7b706SFam Zhengqapi-schema += args-name-clash.json 40846e7b706SFam Zhengqapi-schema += args-union.json 40946e7b706SFam Zhengqapi-schema += args-unknown.json 41046e7b706SFam Zhengqapi-schema += bad-base.json 41146e7b706SFam Zhengqapi-schema += bad-data.json 41246e7b706SFam Zhengqapi-schema += bad-ident.json 41346e7b706SFam Zhengqapi-schema += bad-type-bool.json 41446e7b706SFam Zhengqapi-schema += bad-type-dict.json 41546e7b706SFam Zhengqapi-schema += bad-type-int.json 41646e7b706SFam Zhengqapi-schema += base-cycle-direct.json 41746e7b706SFam Zhengqapi-schema += base-cycle-indirect.json 41846e7b706SFam Zhengqapi-schema += command-int.json 41946e7b706SFam Zhengqapi-schema += comments.json 420f641d06aSMarkus Armbrusterqapi-schema += doc-bad-alternate-member.json 421bdc001caSMarkus Armbrusterqapi-schema += doc-bad-command-arg.json 422cfa438ffSMarkus Armbrusterqapi-schema += doc-bad-section.json 4233313b612SMarc-André Lureauqapi-schema += doc-bad-symbol.json 424f641d06aSMarkus Armbrusterqapi-schema += doc-bad-union-member.json 4252028be8eSMarkus Armbrusterqapi-schema += doc-before-include.json 4262028be8eSMarkus Armbrusterqapi-schema += doc-before-pragma.json 4273313b612SMarc-André Lureauqapi-schema += doc-duplicated-arg.json 4283313b612SMarc-André Lureauqapi-schema += doc-duplicated-return.json 4293313b612SMarc-André Lureauqapi-schema += doc-duplicated-since.json 4303313b612SMarc-André Lureauqapi-schema += doc-empty-arg.json 4313313b612SMarc-André Lureauqapi-schema += doc-empty-section.json 4323313b612SMarc-André Lureauqapi-schema += doc-empty-symbol.json 43380d1f2e4SMarkus Armbrusterqapi-schema += doc-good.json 4343313b612SMarc-André Lureauqapi-schema += doc-interleaved-section.json 4353313b612SMarc-André Lureauqapi-schema += doc-invalid-end.json 4363313b612SMarc-André Lureauqapi-schema += doc-invalid-end2.json 4373313b612SMarc-André Lureauqapi-schema += doc-invalid-return.json 4383313b612SMarc-André Lureauqapi-schema += doc-invalid-section.json 4393313b612SMarc-André Lureauqapi-schema += doc-invalid-start.json 4403313b612SMarc-André Lureauqapi-schema += doc-missing-colon.json 4413313b612SMarc-André Lureauqapi-schema += doc-missing-expr.json 4423313b612SMarc-André Lureauqapi-schema += doc-missing-space.json 443cfa438ffSMarkus Armbrusterqapi-schema += doc-missing.json 4442028be8eSMarkus Armbrusterqapi-schema += doc-no-symbol.json 44546e7b706SFam Zhengqapi-schema += double-data.json 44646e7b706SFam Zhengqapi-schema += double-type.json 44746e7b706SFam Zhengqapi-schema += duplicate-key.json 44846e7b706SFam Zhengqapi-schema += empty.json 44946e7b706SFam Zhengqapi-schema += enum-bad-name.json 45046e7b706SFam Zhengqapi-schema += enum-bad-prefix.json 45146e7b706SFam Zhengqapi-schema += enum-clash-member.json 45246e7b706SFam Zhengqapi-schema += enum-dict-member.json 45346e7b706SFam Zhengqapi-schema += enum-int-member.json 45446e7b706SFam Zhengqapi-schema += enum-member-case.json 45546e7b706SFam Zhengqapi-schema += enum-missing-data.json 45646e7b706SFam Zhengqapi-schema += enum-wrong-data.json 45746e7b706SFam Zhengqapi-schema += escape-outside-string.json 45846e7b706SFam Zhengqapi-schema += escape-too-big.json 45946e7b706SFam Zhengqapi-schema += escape-too-short.json 460c818408eSEric Blakeqapi-schema += event-boxed-empty.json 46146e7b706SFam Zhengqapi-schema += event-case.json 46246e7b706SFam Zhengqapi-schema += event-nest-struct.json 46346e7b706SFam Zhengqapi-schema += flat-union-array-branch.json 46446e7b706SFam Zhengqapi-schema += flat-union-bad-base.json 46546e7b706SFam Zhengqapi-schema += flat-union-bad-discriminator.json 46646e7b706SFam Zhengqapi-schema += flat-union-base-any.json 46746e7b706SFam Zhengqapi-schema += flat-union-base-union.json 46846e7b706SFam Zhengqapi-schema += flat-union-clash-member.json 46946e7b706SFam Zhengqapi-schema += flat-union-empty.json 470d0b18239SEric Blakeqapi-schema += flat-union-incomplete-branch.json 47146e7b706SFam Zhengqapi-schema += flat-union-inline.json 47246e7b706SFam Zhengqapi-schema += flat-union-int-branch.json 47346e7b706SFam Zhengqapi-schema += flat-union-invalid-branch-key.json 47446e7b706SFam Zhengqapi-schema += flat-union-invalid-discriminator.json 47546e7b706SFam Zhengqapi-schema += flat-union-no-base.json 47646e7b706SFam Zhengqapi-schema += flat-union-optional-discriminator.json 47746e7b706SFam Zhengqapi-schema += flat-union-string-discriminator.json 47846e7b706SFam Zhengqapi-schema += funny-char.json 47946e7b706SFam Zhengqapi-schema += ident-with-escape.json 48046e7b706SFam Zhengqapi-schema += include-before-err.json 48146e7b706SFam Zhengqapi-schema += include-cycle.json 482bc52d03fSMarkus Armbrusterqapi-schema += include-extra-junk.json 48346e7b706SFam Zhengqapi-schema += include-format-err.json 48446e7b706SFam Zhengqapi-schema += include-nested-err.json 48546e7b706SFam Zhengqapi-schema += include-no-file.json 48646e7b706SFam Zhengqapi-schema += include-non-file.json 48746e7b706SFam Zhengqapi-schema += include-relpath.json 48846e7b706SFam Zhengqapi-schema += include-repetition.json 48946e7b706SFam Zhengqapi-schema += include-self-cycle.json 49046e7b706SFam Zhengqapi-schema += include-simple.json 49146e7b706SFam Zhengqapi-schema += indented-expr.json 49246e7b706SFam Zhengqapi-schema += leading-comma-list.json 49346e7b706SFam Zhengqapi-schema += leading-comma-object.json 49446e7b706SFam Zhengqapi-schema += missing-colon.json 49546e7b706SFam Zhengqapi-schema += missing-comma-list.json 49646e7b706SFam Zhengqapi-schema += missing-comma-object.json 49746e7b706SFam Zhengqapi-schema += missing-type.json 49846e7b706SFam Zhengqapi-schema += nested-struct-data.json 49946e7b706SFam Zhengqapi-schema += non-objects.json 500bc52d03fSMarkus Armbrusterqapi-schema += pragma-doc-required-crap.json 501bc52d03fSMarkus Armbrusterqapi-schema += pragma-extra-junk.json 5022cfbae3cSMarkus Armbrusterqapi-schema += pragma-name-case-whitelist-crap.json 503bc52d03fSMarkus Armbrusterqapi-schema += pragma-non-dict.json 5041554a8faSMarkus Armbrusterqapi-schema += pragma-returns-whitelist-crap.json 50546e7b706SFam Zhengqapi-schema += qapi-schema-test.json 50646e7b706SFam Zhengqapi-schema += quoted-structural-chars.json 50746e7b706SFam Zhengqapi-schema += redefined-builtin.json 50846e7b706SFam Zhengqapi-schema += redefined-command.json 50946e7b706SFam Zhengqapi-schema += redefined-event.json 51046e7b706SFam Zhengqapi-schema += redefined-type.json 51146e7b706SFam Zhengqapi-schema += reserved-command-q.json 51246e7b706SFam Zhengqapi-schema += reserved-enum-q.json 51346e7b706SFam Zhengqapi-schema += reserved-member-has.json 51446e7b706SFam Zhengqapi-schema += reserved-member-q.json 51546e7b706SFam Zhengqapi-schema += reserved-member-u.json 51646e7b706SFam Zhengqapi-schema += reserved-member-underscore.json 51746e7b706SFam Zhengqapi-schema += reserved-type-kind.json 51846e7b706SFam Zhengqapi-schema += reserved-type-list.json 51946e7b706SFam Zhengqapi-schema += returns-alternate.json 52046e7b706SFam Zhengqapi-schema += returns-array-bad.json 52146e7b706SFam Zhengqapi-schema += returns-dict.json 52246e7b706SFam Zhengqapi-schema += returns-unknown.json 52346e7b706SFam Zhengqapi-schema += returns-whitelist.json 52446e7b706SFam Zhengqapi-schema += struct-base-clash-deep.json 52546e7b706SFam Zhengqapi-schema += struct-base-clash.json 52646e7b706SFam Zhengqapi-schema += struct-data-invalid.json 52746e7b706SFam Zhengqapi-schema += struct-member-invalid.json 52846e7b706SFam Zhengqapi-schema += trailing-comma-list.json 52946e7b706SFam Zhengqapi-schema += trailing-comma-object.json 53046e7b706SFam Zhengqapi-schema += type-bypass-bad-gen.json 53146e7b706SFam Zhengqapi-schema += unclosed-list.json 53246e7b706SFam Zhengqapi-schema += unclosed-object.json 53346e7b706SFam Zhengqapi-schema += unclosed-string.json 53446e7b706SFam Zhengqapi-schema += unicode-str.json 535707fb2d3SMarkus Armbrusterqapi-schema += union-base-empty.json 53646e7b706SFam Zhengqapi-schema += union-base-no-discriminator.json 53746e7b706SFam Zhengqapi-schema += union-branch-case.json 53846e7b706SFam Zhengqapi-schema += union-clash-branches.json 53946e7b706SFam Zhengqapi-schema += union-empty.json 54046e7b706SFam Zhengqapi-schema += union-invalid-base.json 54146e7b706SFam Zhengqapi-schema += union-optional-branch.json 54246e7b706SFam Zhengqapi-schema += union-unknown.json 54346e7b706SFam Zhengqapi-schema += unknown-escape.json 54446e7b706SFam Zhengqapi-schema += unknown-expr-key.json 5453313b612SMarc-André Lureau 5463313b612SMarc-André Lureau 54746e7b706SFam Zhengcheck-qapi-schema-y := $(addprefix tests/qapi-schema/, $(qapi-schema)) 54846e7b706SFam Zheng 5494f04f13cSDaniel P. BerrangeGENERATED_FILES += tests/test-qapi-types.h tests/test-qapi-visit.h \ 55046e7b706SFam Zheng tests/test-qmp-commands.h tests/test-qapi-event.h \ 55146e7b706SFam Zheng tests/test-qmp-introspect.h 55246e7b706SFam Zheng 55301b2ffceSMarc-André Lureautest-obj-y = tests/check-qnum.o tests/check-qstring.o tests/check-qdict.o \ 5541b76e838SMax Reitz tests/check-qlist.o tests/check-qnull.o tests/check-qobject.o \ 555382176b4SMarc-André Lureau tests/check-qjson.o tests/check-qlit.o \ 55646e7b706SFam Zheng tests/test-coroutine.o tests/test-string-output-visitor.o \ 557b3db211fSDaniel P. Berrange tests/test-string-input-visitor.o tests/test-qobject-output-visitor.o \ 558a15fcc3cSEric Blake tests/test-clone-visitor.o \ 55977c47de2SMarkus Armbruster tests/test-qobject-input-visitor.o \ 56046e7b706SFam Zheng tests/test-qmp-commands.o tests/test-visitor-serialization.o \ 56146e7b706SFam Zheng tests/test-x86-cpuid.o tests/test-mul64.o tests/test-int128.o \ 56246e7b706SFam Zheng tests/test-opts-visitor.o tests/test-qmp-event.o \ 563ff9249b7SEmilio G. Cota tests/rcutorture.o tests/test-rcu-list.o \ 564f539fbe3SJose Ricardo Ziviani tests/test-qdist.o tests/test-shift128.o \ 565070e3edcSEmilio G. Cota tests/test-qht.o tests/qht-bench.o tests/test-qht-par.o \ 566070e3edcSEmilio G. Cota tests/atomic_add-bench.o 56746e7b706SFam Zheng 56846e7b706SFam Zheng$(test-obj-y): QEMU_INCLUDES += -Itests 56946e7b706SFam ZhengQEMU_CFLAGS += -I$(SRC_PATH)/tests 57046e7b706SFam Zheng 57146e7b706SFam Zheng 57246e7b706SFam Zheng# Deps that are common to various different sets of tests below 573ebedb37cSPaolo Bonzinitest-util-obj-y = libqemuutil.a 57446e7b706SFam Zhengtest-qom-obj-y = $(qom-obj-y) $(test-util-obj-y) 57546e7b706SFam Zhengtest-qapi-obj-y = tests/test-qapi-visit.o tests/test-qapi-types.o \ 57646e7b706SFam Zheng tests/test-qapi-event.o tests/test-qmp-introspect.o \ 57746e7b706SFam Zheng $(test-qom-obj-y) 5781efd9d5eSLongpeng(Mike)benchmark-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y) 57946e7b706SFam Zhengtest-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y) 58046e7b706SFam Zhengtest-io-obj-y = $(io-obj-y) $(test-crypto-obj-y) 5810c330a73SPaolo Bonzinitest-block-obj-y = $(block-obj-y) $(test-io-obj-y) tests/iothread.o 58246e7b706SFam Zheng 58301b2ffceSMarc-André Lureautests/check-qnum$(EXESUF): tests/check-qnum.o $(test-util-obj-y) 58446e7b706SFam Zhengtests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y) 58546e7b706SFam Zhengtests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y) 58646e7b706SFam Zhengtests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y) 58746e7b706SFam Zhengtests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y) 5881b76e838SMax Reitztests/check-qobject$(EXESUF): tests/check-qobject.o $(test-util-obj-y) 58946e7b706SFam Zhengtests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y) 590382176b4SMarc-André Lureautests/check-qlit$(EXESUF): tests/check-qlit.o $(test-util-obj-y) 59146e7b706SFam Zhengtests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y) 59246e7b706SFam Zhengtests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y) 593ea3af47dSMarc-André Lureau 594c2b38b27SPaolo Bonzinitests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y) 59546e7b706SFam Zhengtests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y) 59646e7b706SFam Zhengtests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y) 5970c330a73SPaolo Bonzinitests/test-aio-multithread$(EXESUF): tests/test-aio-multithread.o $(test-block-obj-y) 59846e7b706SFam Zhengtests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y) 599*881cfd17SKevin Wolftests/test-bdrv-drain$(EXESUF): tests/test-bdrv-drain.o $(test-block-obj-y) $(test-util-obj-y) 6009ef8112aSAlberto Garciatests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y) 60146e7b706SFam Zhengtests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y) 60246e7b706SFam Zhengtests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y) 60346e7b706SFam Zhengtests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y) 604a3b52535SVladimir Sementsov-Ogievskiytests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y) 60546e7b706SFam Zhengtests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o 606aa3544c3SJuan Quintelatests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y) 60705cb8ed5SAlistair Francistests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o $(test-util-obj-y) 60846e7b706SFam Zhengtests/test-int128$(EXESUF): tests/test-int128.o 60946e7b706SFam Zhengtests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y) 61046e7b706SFam Zhengtests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y) 611ff9249b7SEmilio G. Cotatests/test-qdist$(EXESUF): tests/test-qdist.o $(test-util-obj-y) 6121a95404fSEmilio G. Cotatests/test-qht$(EXESUF): tests/test-qht.o $(test-util-obj-y) 613896a9ee9SEmilio G. Cotatests/test-qht-par$(EXESUF): tests/test-qht-par.o tests/qht-bench$(EXESUF) $(test-util-obj-y) 614515864a0SEmilio G. Cotatests/qht-bench$(EXESUF): tests/qht-bench.o $(test-util-obj-y) 615efad6682SRichard Hendersontests/test-bufferiszero$(EXESUF): tests/test-bufferiszero.o $(test-util-obj-y) 616070e3edcSEmilio G. Cotatests/atomic_add-bench$(EXESUF): tests/atomic_add-bench.o $(test-util-obj-y) 61746e7b706SFam Zheng 61846e7b706SFam Zhengtests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \ 61946e7b706SFam Zheng hw/core/qdev.o hw/core/qdev-properties.o hw/core/hotplug.o\ 62046e7b706SFam Zheng hw/core/bus.o \ 62146e7b706SFam Zheng hw/core/irq.o \ 62246e7b706SFam Zheng hw/core/fw-path-provider.o \ 6232f7b92a0SPaolo Bonzini hw/core/reset.o \ 62446e7b706SFam Zheng $(test-qapi-obj-y) 62546e7b706SFam Zhengtests/test-vmstate$(EXESUF): tests/test-vmstate.o \ 626576d1abcSJuan Quintela migration/vmstate.o migration/vmstate-types.o migration/qemu-file.o \ 62746e7b706SFam Zheng migration/qemu-file-channel.o migration/qjson.o \ 62846e7b706SFam Zheng $(test-io-obj-y) 629c2b38b27SPaolo Bonzinitests/test-timed-average$(EXESUF): tests/test-timed-average.o $(test-util-obj-y) 630ebedb37cSPaolo Bonzinitests/test-base64$(EXESUF): tests/test-base64.o $(test-util-obj-y) 6319ee24e98SPaolo Bonzinitests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o 63246e7b706SFam Zheng 63346e7b706SFam Zhengtests/test-logging$(EXESUF): tests/test-logging.o $(test-util-obj-y) 63446e7b706SFam Zheng 635b3110466SChanglong Xietests/test-replication$(EXESUF): tests/test-replication.o $(test-util-obj-y) \ 636b3110466SChanglong Xie $(test-block-obj-y) 637b3110466SChanglong Xie 63846e7b706SFam Zhengtests/test-qapi-types.c tests/test-qapi-types.h :\ 63946e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py) 64046e7b706SFam Zheng $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \ 64146e7b706SFam Zheng $(gen-out-type) -o tests -p "test-" $<, \ 6420bdb12c7SPeter Maydell "GEN","$@") 64346e7b706SFam Zhengtests/test-qapi-visit.c tests/test-qapi-visit.h :\ 64446e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py) 64546e7b706SFam Zheng $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \ 64646e7b706SFam Zheng $(gen-out-type) -o tests -p "test-" $<, \ 6470bdb12c7SPeter Maydell "GEN","$@") 64846e7b706SFam Zhengtests/test-qmp-commands.h tests/test-qmp-marshal.c :\ 64946e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py) 65046e7b706SFam Zheng $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \ 65146e7b706SFam Zheng $(gen-out-type) -o tests -p "test-" $<, \ 6520bdb12c7SPeter Maydell "GEN","$@") 65346e7b706SFam Zhengtests/test-qapi-event.c tests/test-qapi-event.h :\ 65446e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-event.py $(qapi-py) 65546e7b706SFam Zheng $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \ 65646e7b706SFam Zheng $(gen-out-type) -o tests -p "test-" $<, \ 6570bdb12c7SPeter Maydell "GEN","$@") 65846e7b706SFam Zhengtests/test-qmp-introspect.c tests/test-qmp-introspect.h :\ 65946e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py) 66046e7b706SFam Zheng $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \ 66146e7b706SFam Zheng $(gen-out-type) -o tests -p "test-" $<, \ 6620bdb12c7SPeter Maydell "GEN","$@") 66346e7b706SFam Zheng 66480d1f2e4SMarkus Armbrustertests/qapi-schema/doc-good.test.texi: $(SRC_PATH)/tests/qapi-schema/doc-good.json $(SRC_PATH)/scripts/qapi2texi.py $(qapi-py) 66580d1f2e4SMarkus Armbruster $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@") 66680d1f2e4SMarkus Armbruster 66746e7b706SFam Zhengtests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y) 66846e7b706SFam Zhengtests/test-string-input-visitor$(EXESUF): tests/test-string-input-visitor.o $(test-qapi-obj-y) 66946e7b706SFam Zhengtests/test-qmp-event$(EXESUF): tests/test-qmp-event.o $(test-qapi-obj-y) 670b3db211fSDaniel P. Berrangetests/test-qobject-output-visitor$(EXESUF): tests/test-qobject-output-visitor.o $(test-qapi-obj-y) 671a15fcc3cSEric Blaketests/test-clone-visitor$(EXESUF): tests/test-clone-visitor.o $(test-qapi-obj-y) 672b3db211fSDaniel P. Berrangetests/test-qobject-input-visitor$(EXESUF): tests/test-qobject-input-visitor.o $(test-qapi-obj-y) 67346e7b706SFam Zhengtests/test-qmp-commands$(EXESUF): tests/test-qmp-commands.o tests/test-qmp-marshal.o $(test-qapi-obj-y) 67446e7b706SFam Zhengtests/test-visitor-serialization$(EXESUF): tests/test-visitor-serialization.o $(test-qapi-obj-y) 67546e7b706SFam Zhengtests/test-opts-visitor$(EXESUF): tests/test-opts-visitor.o $(test-qapi-obj-y) 67646e7b706SFam Zheng 677f539fbe3SJose Ricardo Zivianitests/test-shift128$(EXESUF): tests/test-shift128.o $(test-util-obj-y) 67846e7b706SFam Zhengtests/test-mul64$(EXESUF): tests/test-mul64.o $(test-util-obj-y) 67946e7b706SFam Zhengtests/test-bitops$(EXESUF): tests/test-bitops.o $(test-util-obj-y) 680c3f8962fSAlex Bennéetests/test-bitcnt$(EXESUF): tests/test-bitcnt.o $(test-util-obj-y) 68146e7b706SFam Zhengtests/test-crypto-hash$(EXESUF): tests/test-crypto-hash.o $(test-crypto-obj-y) 6820128cd29SLongpeng(Mike)tests/benchmark-crypto-hash$(EXESUF): tests/benchmark-crypto-hash.o $(test-crypto-obj-y) 6834fd460bfSLongpeng(Mike)tests/test-crypto-hmac$(EXESUF): tests/test-crypto-hmac.o $(test-crypto-obj-y) 684c7a9af4bSLongpeng(Mike)tests/benchmark-crypto-hmac$(EXESUF): tests/benchmark-crypto-hmac.o $(test-crypto-obj-y) 68546e7b706SFam Zhengtests/test-crypto-cipher$(EXESUF): tests/test-crypto-cipher.o $(test-crypto-obj-y) 6861efd9d5eSLongpeng(Mike)tests/benchmark-crypto-cipher$(EXESUF): tests/benchmark-crypto-cipher.o $(test-crypto-obj-y) 68746e7b706SFam Zhengtests/test-crypto-secret$(EXESUF): tests/test-crypto-secret.o $(test-crypto-obj-y) 68846e7b706SFam Zhengtests/test-crypto-xts$(EXESUF): tests/test-crypto-xts.o $(test-crypto-obj-y) 68946e7b706SFam Zheng 69046e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-cflags := $(TASN1_CFLAGS) 69146e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-libs := $(TASN1_LIBS) 69246e7b706SFam Zhengtests/pkix_asn1_tab.o-cflags := $(TASN1_CFLAGS) 69346e7b706SFam Zheng 69446e7b706SFam Zhengtests/test-crypto-tlscredsx509.o-cflags := $(TASN1_CFLAGS) 69546e7b706SFam Zhengtests/test-crypto-tlscredsx509$(EXESUF): tests/test-crypto-tlscredsx509.o \ 69646e7b706SFam Zheng tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y) 69746e7b706SFam Zheng 69846e7b706SFam Zhengtests/test-crypto-tlssession.o-cflags := $(TASN1_CFLAGS) 69946e7b706SFam Zhengtests/test-crypto-tlssession$(EXESUF): tests/test-crypto-tlssession.o \ 70046e7b706SFam Zheng tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y) 70146e7b706SFam Zhengtests/test-io-task$(EXESUF): tests/test-io-task.o $(test-io-obj-y) 70246e7b706SFam Zhengtests/test-io-channel-socket$(EXESUF): tests/test-io-channel-socket.o \ 70346e7b706SFam Zheng tests/io-channel-helpers.o $(test-io-obj-y) 70446e7b706SFam Zhengtests/test-io-channel-file$(EXESUF): tests/test-io-channel-file.o \ 70546e7b706SFam Zheng tests/io-channel-helpers.o $(test-io-obj-y) 70646e7b706SFam Zhengtests/test-io-channel-tls$(EXESUF): tests/test-io-channel-tls.o \ 70746e7b706SFam Zheng tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \ 70846e7b706SFam Zheng tests/io-channel-helpers.o $(test-io-obj-y) 70946e7b706SFam Zhengtests/test-io-channel-command$(EXESUF): tests/test-io-channel-command.o \ 71046e7b706SFam Zheng tests/io-channel-helpers.o $(test-io-obj-y) 71146e7b706SFam Zhengtests/test-io-channel-buffer$(EXESUF): tests/test-io-channel-buffer.o \ 71246e7b706SFam Zheng tests/io-channel-helpers.o $(test-io-obj-y) 71346e7b706SFam Zhengtests/test-crypto-pbkdf$(EXESUF): tests/test-crypto-pbkdf.o $(test-crypto-obj-y) 71446e7b706SFam Zhengtests/test-crypto-ivgen$(EXESUF): tests/test-crypto-ivgen.o $(test-crypto-obj-y) 71546e7b706SFam Zhengtests/test-crypto-afsplit$(EXESUF): tests/test-crypto-afsplit.o $(test-crypto-obj-y) 71646e7b706SFam Zhengtests/test-crypto-block$(EXESUF): tests/test-crypto-block.o $(test-crypto-obj-y) 71746e7b706SFam Zheng 71846e7b706SFam Zhenglibqos-obj-y = tests/libqos/pci.o tests/libqos/fw_cfg.o tests/libqos/malloc.o 71946e7b706SFam Zhenglibqos-obj-y += tests/libqos/i2c.o tests/libqos/libqos.o 7208d6ef7c9SLaurent Vivierlibqos-spapr-obj-y = $(libqos-obj-y) tests/libqos/malloc-spapr.o 7218d6ef7c9SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/libqos-spapr.o 722eeddd59fSLaurent Vivierlibqos-spapr-obj-y += tests/libqos/rtas.o 723cf716b31SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/pci-spapr.o 72446e7b706SFam Zhenglibqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o 72546e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/malloc-pc.o tests/libqos/libqos-pc.o 72646e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/ahci.o 72746e7b706SFam Zhenglibqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o 72846e7b706SFam Zhenglibqos-imx-obj-y = $(libqos-obj-y) tests/libqos/i2c-imx.o 729aa9026fdSLaurent Vivierlibqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/usb.o 73030ca440eSLaurent Vivierlibqos-virtio-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/virtio.o tests/libqos/virtio-pci.o tests/libqos/virtio-mmio.o tests/libqos/malloc-generic.o 73146e7b706SFam Zheng 732f66e7ac8SMarkus Armbrustertests/qmp-test$(EXESUF): tests/qmp-test.o 73346e7b706SFam Zhengtests/device-introspect-test$(EXESUF): tests/device-introspect-test.o 73446e7b706SFam Zhengtests/rtc-test$(EXESUF): tests/rtc-test.o 73546e7b706SFam Zhengtests/m48t59-test$(EXESUF): tests/m48t59-test.o 73646e7b706SFam Zhengtests/endianness-test$(EXESUF): tests/endianness-test.o 73746e7b706SFam Zhengtests/spapr-phb-test$(EXESUF): tests/spapr-phb-test.o $(libqos-obj-y) 738fcbf4a3cSThomas Huthtests/prom-env-test$(EXESUF): tests/prom-env-test.o $(libqos-obj-y) 739eeddd59fSLaurent Viviertests/rtas-test$(EXESUF): tests/rtas-test.o $(libqos-spapr-obj-y) 74046e7b706SFam Zhengtests/fdc-test$(EXESUF): tests/fdc-test.o 74146e7b706SFam Zhengtests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y) 74246e7b706SFam Zhengtests/ahci-test$(EXESUF): tests/ahci-test.o $(libqos-pc-obj-y) 74346e7b706SFam Zhengtests/ipmi-kcs-test$(EXESUF): tests/ipmi-kcs-test.o 74446e7b706SFam Zhengtests/ipmi-bt-test$(EXESUF): tests/ipmi-bt-test.o 74546e7b706SFam Zhengtests/hd-geo-test$(EXESUF): tests/hd-geo-test.o 74646e7b706SFam Zhengtests/boot-order-test$(EXESUF): tests/boot-order-test.o $(libqos-obj-y) 747d2ab58ffSThomas Huthtests/boot-serial-test$(EXESUF): tests/boot-serial-test.o $(libqos-obj-y) 74846e7b706SFam Zhengtests/bios-tables-test$(EXESUF): tests/bios-tables-test.o \ 7493248f1b4SBen Warren tests/boot-sector.o tests/acpi-utils.o $(libqos-obj-y) 75046e7b706SFam Zhengtests/pxe-test$(EXESUF): tests/pxe-test.o tests/boot-sector.o $(libqos-obj-y) 75146e7b706SFam Zhengtests/tmp105-test$(EXESUF): tests/tmp105-test.o $(libqos-omap-obj-y) 75246e7b706SFam Zhengtests/ds1338-test$(EXESUF): tests/ds1338-test.o $(libqos-imx-obj-y) 7537a2334f7SCédric Le Goatertests/m25p80-test$(EXESUF): tests/m25p80-test.o 75446e7b706SFam Zhengtests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y) 75546e7b706SFam Zhengtests/q35-test$(EXESUF): tests/q35-test.o $(libqos-pc-obj-y) 75646e7b706SFam Zhengtests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y) 75746e7b706SFam Zhengtests/e1000-test$(EXESUF): tests/e1000-test.o 75846e7b706SFam Zhengtests/e1000e-test$(EXESUF): tests/e1000e-test.o $(libqos-pc-obj-y) 75946e7b706SFam Zhengtests/rtl8139-test$(EXESUF): tests/rtl8139-test.o $(libqos-pc-obj-y) 76046e7b706SFam Zhengtests/pcnet-test$(EXESUF): tests/pcnet-test.o 761ca8e4bf4SDavid Gibsontests/pnv-xscom-test$(EXESUF): tests/pnv-xscom-test.o 76246e7b706SFam Zhengtests/eepro100-test$(EXESUF): tests/eepro100-test.o 76346e7b706SFam Zhengtests/vmxnet3-test$(EXESUF): tests/vmxnet3-test.o 76446e7b706SFam Zhengtests/ne2000-test$(EXESUF): tests/ne2000-test.o 76546e7b706SFam Zhengtests/wdt_ib700-test$(EXESUF): tests/wdt_ib700-test.o 76646e7b706SFam Zhengtests/tco-test$(EXESUF): tests/tco-test.o $(libqos-pc-obj-y) 767d0a5cc5bSThomas Huthtests/virtio-balloon-test$(EXESUF): tests/virtio-balloon-test.o $(libqos-virtio-obj-y) 76846e7b706SFam Zhengtests/virtio-blk-test$(EXESUF): tests/virtio-blk-test.o $(libqos-virtio-obj-y) 76946e7b706SFam Zhengtests/virtio-net-test$(EXESUF): tests/virtio-net-test.o $(libqos-pc-obj-y) $(libqos-virtio-obj-y) 77046e7b706SFam Zhengtests/virtio-rng-test$(EXESUF): tests/virtio-rng-test.o $(libqos-pc-obj-y) 77146e7b706SFam Zhengtests/virtio-scsi-test$(EXESUF): tests/virtio-scsi-test.o $(libqos-virtio-obj-y) 772557a4cc0SGreg Kurztests/virtio-9p-test$(EXESUF): tests/virtio-9p-test.o $(libqos-virtio-obj-y) 773d0a5cc5bSThomas Huthtests/virtio-serial-test$(EXESUF): tests/virtio-serial-test.o $(libqos-virtio-obj-y) 774d0a5cc5bSThomas Huthtests/virtio-console-test$(EXESUF): tests/virtio-console-test.o $(libqos-virtio-obj-y) 77546e7b706SFam Zhengtests/tpci200-test$(EXESUF): tests/tpci200-test.o 77646e7b706SFam Zhengtests/display-vga-test$(EXESUF): tests/display-vga-test.o 77746e7b706SFam Zhengtests/ipoctal232-test$(EXESUF): tests/ipoctal232-test.o 77846e7b706SFam Zhengtests/qom-test$(EXESUF): tests/qom-test.o 77978f86a2bSThomas Huthtests/test-hmp$(EXESUF): tests/test-hmp.o 7802f84a92eSThomas Huthtests/drive_del-test$(EXESUF): tests/drive_del-test.o $(libqos-virtio-obj-y) 78146e7b706SFam Zhengtests/qdev-monitor-test$(EXESUF): tests/qdev-monitor-test.o $(libqos-pc-obj-y) 78246e7b706SFam Zhengtests/nvme-test$(EXESUF): tests/nvme-test.o 78346e7b706SFam Zhengtests/pvpanic-test$(EXESUF): tests/pvpanic-test.o 78446e7b706SFam Zhengtests/i82801b11-test$(EXESUF): tests/i82801b11-test.o 78546e7b706SFam Zhengtests/ac97-test$(EXESUF): tests/ac97-test.o 78646e7b706SFam Zhengtests/es1370-test$(EXESUF): tests/es1370-test.o 78746e7b706SFam Zhengtests/intel-hda-test$(EXESUF): tests/intel-hda-test.o 78846e7b706SFam Zhengtests/ioh3420-test$(EXESUF): tests/ioh3420-test.o 78946e7b706SFam Zhengtests/usb-hcd-ohci-test$(EXESUF): tests/usb-hcd-ohci-test.o $(libqos-usb-obj-y) 79046e7b706SFam Zhengtests/usb-hcd-uhci-test$(EXESUF): tests/usb-hcd-uhci-test.o $(libqos-usb-obj-y) 79146e7b706SFam Zhengtests/usb-hcd-ehci-test$(EXESUF): tests/usb-hcd-ehci-test.o $(libqos-usb-obj-y) 79246e7b706SFam Zhengtests/usb-hcd-xhci-test$(EXESUF): tests/usb-hcd-xhci-test.o $(libqos-usb-obj-y) 79346e7b706SFam Zhengtests/pc-cpu-test$(EXESUF): tests/pc-cpu-test.o 7942656bfd9SJuan Quintelatests/migration-test$(EXESUF): tests/migration-test.o 795c2b38b27SPaolo Bonzinitests/vhost-user-test$(EXESUF): tests/vhost-user-test.o $(test-util-obj-y) \ 79632d955a4SMarc-André Lureau $(qtest-obj-y) $(test-io-obj-y) $(libqos-virtio-obj-y) $(libqos-pc-obj-y) \ 79732d955a4SMarc-André Lureau $(chardev-obj-y) 79846e7b706SFam Zhengtests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o 79946e7b706SFam Zhengtests/test-qemu-opts$(EXESUF): tests/test-qemu-opts.o $(test-util-obj-y) 800599c156bSMarkus Armbrustertests/test-keyval$(EXESUF): tests/test-keyval.o $(test-util-obj-y) $(test-qapi-obj-y) 80146e7b706SFam Zhengtests/test-write-threshold$(EXESUF): tests/test-write-threshold.o $(test-block-obj-y) 80246e7b706SFam Zhengtests/test-netfilter$(EXESUF): tests/test-netfilter.o $(qtest-obj-y) 80346e7b706SFam Zhengtests/test-filter-mirror$(EXESUF): tests/test-filter-mirror.o $(qtest-obj-y) 80446e7b706SFam Zhengtests/test-filter-redirector$(EXESUF): tests/test-filter-redirector.o $(qtest-obj-y) 8056efef58eSEduardo Habkosttests/test-x86-cpuid-compat$(EXESUF): tests/test-x86-cpuid-compat.o $(qtest-obj-y) 8062bf25e07SLaurent Viviertests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y) $(libqos-spapr-obj-y) 807660174fcSPaolo Bonzinitests/megasas-test$(EXESUF): tests/megasas-test.o $(libqos-spapr-obj-y) $(libqos-pc-obj-y) 808de97cdedSMarc-André Lureautests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o $(test-util-obj-y) libvhost-user.a 809c739cdddSFam Zhengtests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y) 810882fac37SDmitry Osipenkotests/test-arm-mptimer$(EXESUF): tests/test-arm-mptimer.o 8116c873d11SMarkus Armbrustertests/test-qapi-util$(EXESUF): tests/test-qapi-util.o $(test-util-obj-y) 81263baf8bfSIgor Mammedovtests/numa-test$(EXESUF): tests/numa-test.o 8134871b51bSMichael S. Tsirkintests/vmgenid-test$(EXESUF): tests/vmgenid-test.o tests/boot-sector.o tests/acpi-utils.o 81446e7b706SFam Zheng 815409437e1SDaniel P. Berrangetests/migration/stress$(EXESUF): tests/migration/stress.o 8160bdb12c7SPeter Maydell $(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@") 817409437e1SDaniel P. Berrange 818409437e1SDaniel P. BerrangeINITRD_WORK_DIR=tests/migration/initrd 819409437e1SDaniel P. Berrange 820409437e1SDaniel P. Berrangetests/migration/initrd-stress.img: tests/migration/stress$(EXESUF) 821409437e1SDaniel P. Berrange mkdir -p $(INITRD_WORK_DIR) 822409437e1SDaniel P. Berrange cp $< $(INITRD_WORK_DIR)/init 823409437e1SDaniel P. Berrange (cd $(INITRD_WORK_DIR) && (find | cpio --quiet -o -H newc | gzip -9)) > $@ 824409437e1SDaniel P. Berrange rm $(INITRD_WORK_DIR)/init 825409437e1SDaniel P. Berrange rmdir $(INITRD_WORK_DIR) 826409437e1SDaniel P. Berrange 82746e7b706SFam Zhengifeq ($(CONFIG_POSIX),y) 82846e7b706SFam ZhengLIBS += -lutil 82946e7b706SFam Zhengendif 83046e7b706SFam Zheng 83146e7b706SFam Zheng# QTest rules 83246e7b706SFam Zheng 83346e7b706SFam ZhengTARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS))) 83446e7b706SFam Zhengifeq ($(CONFIG_POSIX),y) 83546e7b706SFam ZhengQTEST_TARGETS = $(TARGETS) 83646e7b706SFam Zhengcheck-qtest-y=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y)) 83746e7b706SFam Zhengcheck-qtest-y += $(check-qtest-generic-y) 83846e7b706SFam Zhengelse 83946e7b706SFam ZhengQTEST_TARGETS = 84046e7b706SFam Zhengendif 84146e7b706SFam Zheng 84246e7b706SFam Zhengqtest-obj-y = tests/libqtest.o $(test-util-obj-y) 84346e7b706SFam Zheng$(check-qtest-y): $(qtest-obj-y) 84446e7b706SFam Zheng 8454be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): qemu-ga$(EXESUF) 8464be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): tests/test-qga.o $(qtest-obj-y) 84746e7b706SFam Zheng 84846e7b706SFam ZhengSPEED = quick 84946e7b706SFam ZhengGTESTER_OPTIONS = -k $(if $(V),--verbose,-q) 85046e7b706SFam ZhengGCOV_OPTIONS = -n $(if $(V),-f,) 85146e7b706SFam Zheng 85246e7b706SFam Zheng# gtester tests, possibly with verbose output 85346e7b706SFam Zheng 85446e7b706SFam Zheng.PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS)) 855b94b330eSPhilippe Mathieu-Daudé$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: subdir-%-softmmu $(check-qtest-y) 85646e7b706SFam Zheng $(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,) 85746e7b706SFam Zheng $(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \ 85846e7b706SFam Zheng QTEST_QEMU_IMG=qemu-img$(EXESUF) \ 85964f871e3SPeter Maydell MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \ 8600bdb12c7SPeter Maydell gtester $(GTESTER_OPTIONS) -m=$(SPEED) $(check-qtest-$*-y) $(check-qtest-generic-y),"GTESTER","$@") 86146e7b706SFam Zheng $(if $(CONFIG_GCOV),@for f in $(gcov-files-$*-y) $(gcov-files-generic-y); do \ 86246e7b706SFam Zheng echo Gcov report for $$f:;\ 86346e7b706SFam Zheng $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \ 86446e7b706SFam Zheng done,) 86546e7b706SFam Zheng 8661efd9d5eSLongpeng(Mike).PHONY: $(patsubst %, check-%, $(check-unit-y) $(check-speed-y)) 8671efd9d5eSLongpeng(Mike)$(patsubst %, check-%, $(check-unit-y) $(check-speed-y)): check-%: % 86846e7b706SFam Zheng $(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,) 86946e7b706SFam Zheng $(call quiet-command, \ 87064f871e3SPeter Maydell MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \ 8710bdb12c7SPeter Maydell gtester $(GTESTER_OPTIONS) -m=$(SPEED) $*,"GTESTER","$*") 87246e7b706SFam Zheng $(if $(CONFIG_GCOV),@for f in $(gcov-files-$(subst tests/,,$*)-y) $(gcov-files-generic-y); do \ 87346e7b706SFam Zheng echo Gcov report for $$f:;\ 87446e7b706SFam Zheng $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \ 87546e7b706SFam Zheng done,) 87646e7b706SFam Zheng 87746e7b706SFam Zheng# gtester tests with XML output 87846e7b706SFam Zheng 87946e7b706SFam Zheng$(patsubst %, check-report-qtest-%.xml, $(QTEST_TARGETS)): check-report-qtest-%.xml: $(check-qtest-y) 88046e7b706SFam Zheng $(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \ 88146e7b706SFam Zheng QTEST_QEMU_IMG=qemu-img$(EXESUF) \ 8820bdb12c7SPeter Maydell gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $(check-qtest-$*-y) $(check-qtest-generic-y),"GTESTER","$@") 88346e7b706SFam Zheng 88446e7b706SFam Zhengcheck-report-unit.xml: $(check-unit-y) 8850bdb12c7SPeter Maydell $(call quiet-command,gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $^,"GTESTER","$@") 88646e7b706SFam Zheng 88746e7b706SFam Zheng# Reports and overall runs 88846e7b706SFam Zheng 88946e7b706SFam Zhengcheck-report.xml: $(patsubst %,check-report-qtest-%.xml, $(QTEST_TARGETS)) check-report-unit.xml 8900bdb12c7SPeter Maydell $(call quiet-command,$(SRC_PATH)/scripts/gtester-cat $^ > $@,"GEN","$@") 89146e7b706SFam Zheng 89246e7b706SFam Zhengcheck-report.html: check-report.xml 8930bdb12c7SPeter Maydell $(call quiet-command,gtester-report $< > $@,"GEN","$@") 89446e7b706SFam Zheng 89546e7b706SFam Zheng 89646e7b706SFam Zheng# Other tests 89746e7b706SFam Zheng 89846e7b706SFam ZhengQEMU_IOTESTS_HELPERS-$(CONFIG_LINUX) = tests/qemu-iotests/socket_scm_helper$(EXESUF) 89946e7b706SFam Zheng 90046e7b706SFam Zheng.PHONY: check-tests/qemu-iotests-quick.sh 90146e7b706SFam Zhengcheck-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF) $(QEMU_IOTESTS_HELPERS-y) 90246e7b706SFam Zheng $< 90346e7b706SFam Zheng 90446e7b706SFam Zheng.PHONY: $(patsubst %, check-%, $(check-qapi-schema-y)) 90546e7b706SFam Zheng$(patsubst %, check-%, $(check-qapi-schema-y)): check-%.json: $(SRC_PATH)/%.json 90646e7b706SFam Zheng $(call quiet-command, PYTHONPATH=$(SRC_PATH)/scripts \ 90746e7b706SFam Zheng $(PYTHON) $(SRC_PATH)/tests/qapi-schema/test-qapi.py \ 90846e7b706SFam Zheng $^ >$*.test.out 2>$*.test.err; \ 90946e7b706SFam Zheng echo $$? >$*.test.exit, \ 9100bdb12c7SPeter Maydell "TEST","$*.out") 91146e7b706SFam Zheng @diff -q $(SRC_PATH)/$*.out $*.test.out 91246e7b706SFam Zheng @# Sanitize error messages (make them independent of build directory) 91346e7b706SFam Zheng @perl -p -e 's|\Q$(SRC_PATH)\E/||g' $*.test.err | diff -q $(SRC_PATH)/$*.err - 91446e7b706SFam Zheng @diff -q $(SRC_PATH)/$*.exit $*.test.exit 91546e7b706SFam Zheng 91680d1f2e4SMarkus Armbruster.PHONY: check-tests/qapi-schema/doc-good.texi 91780d1f2e4SMarkus Armbrustercheck-tests/qapi-schema/doc-good.texi: tests/qapi-schema/doc-good.test.texi 91880d1f2e4SMarkus Armbruster @diff -q $(SRC_PATH)/tests/qapi-schema/doc-good.texi $< 91980d1f2e4SMarkus Armbruster 92046e7b706SFam Zheng# Consolidated targets 92146e7b706SFam Zheng 92246e7b706SFam Zheng.PHONY: check-qapi-schema check-qtest check-unit check check-clean 92380d1f2e4SMarkus Armbrustercheck-qapi-schema: $(patsubst %,check-%, $(check-qapi-schema-y)) check-tests/qapi-schema/doc-good.texi 92446e7b706SFam Zhengcheck-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS)) 92546e7b706SFam Zhengcheck-unit: $(patsubst %,check-%, $(check-unit-y)) 9261efd9d5eSLongpeng(Mike)check-speed: $(patsubst %,check-%, $(check-speed-y)) 92746e7b706SFam Zhengcheck-block: $(patsubst %,check-%, $(check-block-y)) 92846e7b706SFam Zhengcheck: check-qapi-schema check-unit check-qtest 92946e7b706SFam Zhengcheck-clean: 93046e7b706SFam Zheng $(MAKE) -C tests/tcg clean 93146e7b706SFam Zheng rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y) 93246e7b706SFam Zheng rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST), $(check-qtest-$(target)-y)) $(check-qtest-generic-y)) 93346e7b706SFam Zheng 93446e7b706SFam Zhengclean: check-clean 93546e7b706SFam Zheng 93646e7b706SFam Zheng# Build the help program automatically 93746e7b706SFam Zheng 93846e7b706SFam Zhengall: $(QEMU_IOTESTS_HELPERS-y) 93946e7b706SFam Zheng 94046e7b706SFam Zheng-include $(wildcard tests/*.d) 94146e7b706SFam Zheng-include $(wildcard tests/libqos/*.d) 942e45eaef9SFam Zheng 943e45eaef9SFam Zhengendif 944