xref: /openbmc/qemu/tests/Makefile.include (revision 598a29f3)
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
839ef8112aSAlberto Garciacheck-unit-y += tests/test-blockjob$(EXESUF)
8446e7b706SFam Zhengcheck-unit-y += tests/test-blockjob-txn$(EXESUF)
8546e7b706SFam Zhengcheck-unit-y += tests/test-x86-cpuid$(EXESUF)
8646e7b706SFam Zheng# all code tested by test-x86-cpuid is inside topology.h
8746e7b706SFam Zhenggcov-files-test-x86-cpuid-y =
8846e7b706SFam Zhengifeq ($(CONFIG_SOFTMMU),y)
8946e7b706SFam Zhengcheck-unit-y += tests/test-xbzrle$(EXESUF)
9046e7b706SFam Zhenggcov-files-test-xbzrle-y = migration/xbzrle.c
9146e7b706SFam Zhengcheck-unit-$(CONFIG_POSIX) += tests/test-vmstate$(EXESUF)
9246e7b706SFam Zhengendif
9346e7b706SFam Zhengcheck-unit-y += tests/test-cutils$(EXESUF)
9446e7b706SFam Zhenggcov-files-test-cutils-y += util/cutils.c
95f539fbe3SJose Ricardo Zivianicheck-unit-y += tests/test-shift128$(EXESUF)
96f539fbe3SJose Ricardo Zivianigcov-files-test-shift128-y = util/host-utils.c
9746e7b706SFam Zhengcheck-unit-y += tests/test-mul64$(EXESUF)
9846e7b706SFam Zhenggcov-files-test-mul64-y = util/host-utils.c
9946e7b706SFam Zhengcheck-unit-y += tests/test-int128$(EXESUF)
10046e7b706SFam Zheng# all code tested by test-int128 is inside int128.h
10146e7b706SFam Zhenggcov-files-test-int128-y =
10246e7b706SFam Zhengcheck-unit-y += tests/rcutorture$(EXESUF)
10346e7b706SFam Zhenggcov-files-rcutorture-y = util/rcu.c
10446e7b706SFam Zhengcheck-unit-y += tests/test-rcu-list$(EXESUF)
10546e7b706SFam Zhenggcov-files-test-rcu-list-y = util/rcu.c
106ff9249b7SEmilio G. Cotacheck-unit-y += tests/test-qdist$(EXESUF)
107ff9249b7SEmilio G. Cotagcov-files-test-qdist-y = util/qdist.c
1081a95404fSEmilio G. Cotacheck-unit-y += tests/test-qht$(EXESUF)
1091a95404fSEmilio G. Cotagcov-files-test-qht-y = util/qht.c
110896a9ee9SEmilio G. Cotacheck-unit-y += tests/test-qht-par$(EXESUF)
111896a9ee9SEmilio G. Cotagcov-files-test-qht-par-y = util/qht.c
11246e7b706SFam Zhengcheck-unit-y += tests/test-bitops$(EXESUF)
113c3f8962fSAlex Bennéecheck-unit-y += tests/test-bitcnt$(EXESUF)
11446e7b706SFam Zhengcheck-unit-$(CONFIG_HAS_GLIB_SUBPROCESS_TESTS) += tests/test-qdev-global-props$(EXESUF)
11546e7b706SFam Zhengcheck-unit-y += tests/check-qom-interface$(EXESUF)
11646e7b706SFam Zhenggcov-files-check-qom-interface-y = qom/object.c
11746e7b706SFam Zhengcheck-unit-y += tests/check-qom-proplist$(EXESUF)
11846e7b706SFam Zhenggcov-files-check-qom-proplist-y = qom/object.c
11946e7b706SFam Zhengcheck-unit-y += tests/test-qemu-opts$(EXESUF)
120112c9446SMarkus Armbrustergcov-files-test-qemu-opts-y = util/qemu-option.c
121d454dbe0SMarkus Armbrustercheck-unit-y += tests/test-keyval$(EXESUF)
122d454dbe0SMarkus Armbrustergcov-files-test-keyval-y = util/keyval.c
12346e7b706SFam Zhengcheck-unit-y += tests/test-write-threshold$(EXESUF)
12446e7b706SFam Zhenggcov-files-test-write-threshold-y = block/write-threshold.c
1250c16c056SDaniel P. Berrangecheck-unit-y += tests/test-crypto-hash$(EXESUF)
1260128cd29SLongpeng(Mike)check-speed-y += tests/benchmark-crypto-hash$(EXESUF)
1274fd460bfSLongpeng(Mike)check-unit-y += tests/test-crypto-hmac$(EXESUF)
128c7a9af4bSLongpeng(Mike)check-speed-y += tests/benchmark-crypto-hmac$(EXESUF)
12946e7b706SFam Zhengcheck-unit-y += tests/test-crypto-cipher$(EXESUF)
1301efd9d5eSLongpeng(Mike)check-speed-y += tests/benchmark-crypto-cipher$(EXESUF)
13146e7b706SFam Zhengcheck-unit-y += tests/test-crypto-secret$(EXESUF)
13246e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlscredsx509$(EXESUF)
13346e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlssession$(EXESUF)
13446e7b706SFam Zhengifneq (,$(findstring qemu-ga,$(TOOLS)))
13546e7b706SFam Zhengcheck-unit-$(CONFIG_LINUX) += tests/test-qga$(EXESUF)
13646e7b706SFam Zhengendif
13746e7b706SFam Zhengcheck-unit-y += tests/test-timed-average$(EXESUF)
13846e7b706SFam Zhengcheck-unit-y += tests/test-io-task$(EXESUF)
13946e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-socket$(EXESUF)
14046e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-file$(EXESUF)
14146e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-io-channel-tls$(EXESUF)
14246e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-command$(EXESUF)
14346e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-buffer$(EXESUF)
14446e7b706SFam Zhengcheck-unit-y += tests/test-base64$(EXESUF)
14546e7b706SFam Zhengcheck-unit-$(if $(CONFIG_NETTLE_KDF),y,$(CONFIG_GCRYPT_KDF)) += tests/test-crypto-pbkdf$(EXESUF)
14646e7b706SFam Zhengcheck-unit-y += tests/test-crypto-ivgen$(EXESUF)
14746e7b706SFam Zhengcheck-unit-y += tests/test-crypto-afsplit$(EXESUF)
14846e7b706SFam Zhengcheck-unit-y += tests/test-crypto-xts$(EXESUF)
14946e7b706SFam Zhengcheck-unit-y += tests/test-crypto-block$(EXESUF)
15046e7b706SFam Zhengcheck-unit-y += tests/test-logging$(EXESUF)
151112c9446SMarkus Armbrustergcov-files-test-logging-y = util/log.c
152b3110466SChanglong Xiecheck-unit-$(CONFIG_REPLICATION) += tests/test-replication$(EXESUF)
153efad6682SRichard Hendersoncheck-unit-y += tests/test-bufferiszero$(EXESUF)
154efad6682SRichard Hendersongcov-files-check-bufferiszero-y = util/bufferiszero.c
155c739cdddSFam Zhengcheck-unit-y += tests/test-uuid$(EXESUF)
15624b94625SPaolo Bonzinicheck-unit-y += tests/ptimer-test$(EXESUF)
15724b94625SPaolo Bonzinigcov-files-ptimer-test-y = hw/core/ptimer.c
1586c873d11SMarkus Armbrustercheck-unit-y += tests/test-qapi-util$(EXESUF)
1596c873d11SMarkus Armbrustergcov-files-test-qapi-util-y = qapi/qapi-util.c
16046e7b706SFam Zheng
16146e7b706SFam Zhengcheck-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh
16246e7b706SFam Zheng
16346e7b706SFam Zheng# All QTests for now are POSIX-only, but the dependencies are
16446e7b706SFam Zheng# really in libqtest, not in the testcases themselves.
16546e7b706SFam Zheng
166f66e7ac8SMarkus Armbrustercheck-qtest-generic-y = tests/qmp-test$(EXESUF)
167f66e7ac8SMarkus Armbrustergcov-files-generic-y = monitor.c qapi/qmp-dispatch.c
168f66e7ac8SMarkus Armbrustercheck-qtest-generic-y += tests/device-introspect-test$(EXESUF)
16946e7b706SFam Zhenggcov-files-generic-y = qdev-monitor.c qmp.c
17046e7b706SFam Zheng
17146e7b706SFam Zhenggcov-files-ipack-y += hw/ipack/ipack.c
17246e7b706SFam Zhengcheck-qtest-ipack-y += tests/ipoctal232-test$(EXESUF)
17346e7b706SFam Zhenggcov-files-ipack-y += hw/char/ipoctal232.c
17446e7b706SFam Zheng
17546e7b706SFam Zhengcheck-qtest-virtioserial-y += tests/virtio-console-test$(EXESUF)
17646e7b706SFam Zhenggcov-files-virtioserial-y += hw/char/virtio-console.c
17746e7b706SFam Zheng
17846e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/virtio/virtio.c
17946e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-net-test$(EXESUF)
18046e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/net/virtio-net.c
18146e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-balloon-test$(EXESUF)
18246e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/virtio/virtio-balloon.c
18346e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-blk-test$(EXESUF)
18446e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/block/virtio-blk.c
18546e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-rng-test$(EXESUF)
18646e7b706SFam Zhenggcov-files-virtio-y += hw/virtio/virtio-rng.c
18746e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-scsi-test$(EXESUF)
18846e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/scsi/virtio-scsi.c
18946e7b706SFam Zhengifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
19046e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-9p-test$(EXESUF)
19146e7b706SFam Zhenggcov-files-virtio-y += hw/9pfs/virtio-9p.c
19246e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/9pfs/virtio-9p-device.c
19346e7b706SFam Zhengendif
19446e7b706SFam Zhengcheck-qtest-virtio-y += tests/virtio-serial-test$(EXESUF)
19546e7b706SFam Zhenggcov-files-virtio-y += i386-softmmu/hw/char/virtio-serial-bus.c
19646e7b706SFam Zhengcheck-qtest-virtio-y += $(check-qtest-virtioserial-y)
19746e7b706SFam Zhenggcov-files-virtio-y += $(gcov-files-virtioserial-y)
19846e7b706SFam Zheng
19946e7b706SFam Zhengcheck-qtest-pci-y += tests/e1000-test$(EXESUF)
20046e7b706SFam Zhenggcov-files-pci-y += hw/net/e1000.c
20146e7b706SFam Zhengcheck-qtest-pci-y += tests/e1000e-test$(EXESUF)
20246e7b706SFam Zhenggcov-files-pci-y += hw/net/e1000e.c hw/net/e1000e_core.c
20346e7b706SFam Zhengcheck-qtest-pci-y += tests/rtl8139-test$(EXESUF)
20446e7b706SFam Zhenggcov-files-pci-y += hw/net/rtl8139.c
20546e7b706SFam Zhengcheck-qtest-pci-y += tests/pcnet-test$(EXESUF)
20646e7b706SFam Zhenggcov-files-pci-y += hw/net/pcnet.c
20746e7b706SFam Zhenggcov-files-pci-y += hw/net/pcnet-pci.c
20846e7b706SFam Zhengcheck-qtest-pci-y += tests/eepro100-test$(EXESUF)
20946e7b706SFam Zhenggcov-files-pci-y += hw/net/eepro100.c
21046e7b706SFam Zhengcheck-qtest-pci-y += tests/ne2000-test$(EXESUF)
21146e7b706SFam Zhenggcov-files-pci-y += hw/net/ne2000.c
21246e7b706SFam Zhengcheck-qtest-pci-y += tests/nvme-test$(EXESUF)
21346e7b706SFam Zhenggcov-files-pci-y += hw/block/nvme.c
21446e7b706SFam Zhengcheck-qtest-pci-y += tests/ac97-test$(EXESUF)
21546e7b706SFam Zhenggcov-files-pci-y += hw/audio/ac97.c
21646e7b706SFam Zhengcheck-qtest-pci-y += tests/es1370-test$(EXESUF)
21746e7b706SFam Zhenggcov-files-pci-y += hw/audio/es1370.c
21846e7b706SFam Zhengcheck-qtest-pci-y += $(check-qtest-virtio-y)
21946e7b706SFam Zhenggcov-files-pci-y += $(gcov-files-virtio-y) hw/virtio/virtio-pci.c
22046e7b706SFam Zhengcheck-qtest-pci-y += tests/tpci200-test$(EXESUF)
22146e7b706SFam Zhenggcov-files-pci-y += hw/ipack/tpci200.c
22246e7b706SFam Zhengcheck-qtest-pci-y += $(check-qtest-ipack-y)
22346e7b706SFam Zhenggcov-files-pci-y += $(gcov-files-ipack-y)
22446e7b706SFam Zhengcheck-qtest-pci-y += tests/display-vga-test$(EXESUF)
22546e7b706SFam Zhenggcov-files-pci-y += hw/display/vga.c
22646e7b706SFam Zhenggcov-files-pci-y += hw/display/cirrus_vga.c
22746e7b706SFam Zhenggcov-files-pci-y += hw/display/vga-pci.c
22846e7b706SFam Zhenggcov-files-pci-y += hw/display/virtio-gpu.c
22946e7b706SFam Zhenggcov-files-pci-y += hw/display/virtio-gpu-pci.c
23046e7b706SFam Zhenggcov-files-pci-$(CONFIG_VIRTIO_VGA) += hw/display/virtio-vga.c
23146e7b706SFam Zhengcheck-qtest-pci-y += tests/intel-hda-test$(EXESUF)
23246e7b706SFam Zhenggcov-files-pci-y += hw/audio/intel-hda.c hw/audio/hda-codec.c
233e0580342SKamil Rytarowskicheck-qtest-pci-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF)
23446e7b706SFam Zhenggcov-files-pci-y += hw/misc/ivshmem.c
235660174fcSPaolo Bonzinicheck-qtest-pci-y += tests/megasas-test$(EXESUF)
236660174fcSPaolo Bonzinigcov-files-pci-y += hw/scsi/megasas.c
23746e7b706SFam Zheng
23846e7b706SFam Zhengcheck-qtest-i386-y = tests/endianness-test$(EXESUF)
23946e7b706SFam Zhengcheck-qtest-i386-y += tests/fdc-test$(EXESUF)
24046e7b706SFam Zhenggcov-files-i386-y = hw/block/fdc.c
24146e7b706SFam Zhengcheck-qtest-i386-y += tests/ide-test$(EXESUF)
24246e7b706SFam Zhengcheck-qtest-i386-y += tests/ahci-test$(EXESUF)
24346e7b706SFam Zhengcheck-qtest-i386-y += tests/hd-geo-test$(EXESUF)
24446e7b706SFam Zhenggcov-files-i386-y += hw/block/hd-geometry.c
24546e7b706SFam Zhengcheck-qtest-i386-y += tests/boot-order-test$(EXESUF)
24646e7b706SFam Zhengcheck-qtest-i386-y += tests/bios-tables-test$(EXESUF)
247d2ab58ffSThomas Huthcheck-qtest-i386-y += tests/boot-serial-test$(EXESUF)
248d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
24946e7b706SFam Zhengcheck-qtest-i386-y += tests/rtc-test$(EXESUF)
25046e7b706SFam Zhengcheck-qtest-i386-y += tests/ipmi-kcs-test$(EXESUF)
25146e7b706SFam Zhengcheck-qtest-i386-y += tests/ipmi-bt-test$(EXESUF)
25246e7b706SFam Zhengcheck-qtest-i386-y += tests/i440fx-test$(EXESUF)
25346e7b706SFam Zhengcheck-qtest-i386-y += tests/fw_cfg-test$(EXESUF)
25446e7b706SFam Zhengcheck-qtest-i386-y += tests/drive_del-test$(EXESUF)
25546e7b706SFam Zhengcheck-qtest-i386-y += tests/wdt_ib700-test$(EXESUF)
25646e7b706SFam Zhengcheck-qtest-i386-y += tests/tco-test$(EXESUF)
25746e7b706SFam Zhenggcov-files-i386-y += hw/watchdog/watchdog.c hw/watchdog/wdt_ib700.c
25846e7b706SFam Zhengcheck-qtest-i386-y += $(check-qtest-pci-y)
25946e7b706SFam Zhenggcov-files-i386-y += $(gcov-files-pci-y)
26046e7b706SFam Zhengcheck-qtest-i386-y += tests/vmxnet3-test$(EXESUF)
26146e7b706SFam Zhenggcov-files-i386-y += hw/net/vmxnet3.c
26246e7b706SFam Zhenggcov-files-i386-y += hw/net/net_rx_pkt.c
26346e7b706SFam Zhenggcov-files-i386-y += hw/net/net_tx_pkt.c
26446e7b706SFam Zhengcheck-qtest-i386-y += tests/pvpanic-test$(EXESUF)
26546e7b706SFam Zhenggcov-files-i386-y += i386-softmmu/hw/misc/pvpanic.c
26646e7b706SFam Zhengcheck-qtest-i386-y += tests/i82801b11-test$(EXESUF)
26746e7b706SFam Zhenggcov-files-i386-y += hw/pci-bridge/i82801b11.c
26846e7b706SFam Zhengcheck-qtest-i386-y += tests/ioh3420-test$(EXESUF)
26946e7b706SFam Zhenggcov-files-i386-y += hw/pci-bridge/ioh3420.c
27046e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-ohci-test$(EXESUF)
27146e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-ohci.c
27246e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-uhci-test$(EXESUF)
27346e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-uhci.c
27446e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-ehci-test$(EXESUF)
27546e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-ehci.c
27646e7b706SFam Zhenggcov-files-i386-y += hw/usb/dev-hid.c
27746e7b706SFam Zhenggcov-files-i386-y += hw/usb/dev-storage.c
27846e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-xhci-test$(EXESUF)
27946e7b706SFam Zhenggcov-files-i386-y += hw/usb/hcd-xhci.c
28046e7b706SFam Zhengcheck-qtest-i386-y += tests/pc-cpu-test$(EXESUF)
28146e7b706SFam Zhengcheck-qtest-i386-y += tests/q35-test$(EXESUF)
28283f3c709SBen Warrencheck-qtest-i386-y += tests/vmgenid-test$(EXESUF)
28346e7b706SFam Zhenggcov-files-i386-y += hw/pci-host/q35.c
284e6a74868SMarc-André Lureaucheck-qtest-i386-$(CONFIG_VHOST_USER_NET_TEST_i386) += tests/vhost-user-test$(EXESUF)
285e6a74868SMarc-André Lureauifeq ($(CONFIG_VHOST_USER_NET_TEST_i386),)
286e6a74868SMarc-André Lureaucheck-qtest-x86_64-$(CONFIG_VHOST_USER_NET_TEST_x86_64) += tests/vhost-user-test$(EXESUF)
28746e7b706SFam Zhengendif
288d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
2897f57d58dSThomas Huthcheck-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
2907f57d58dSThomas Huthcheck-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
2912656bfd9SJuan Quintelacheck-qtest-i386-y += tests/migration-test$(EXESUF)
2926efef58eSEduardo Habkostcheck-qtest-i386-y += tests/test-x86-cpuid-compat$(EXESUF)
29363baf8bfSIgor Mammedovcheck-qtest-i386-y += tests/numa-test$(EXESUF)
2940ee2e9daSMarc-André Lureaucheck-qtest-x86_64-y += $(check-qtest-i386-y)
29546e7b706SFam Zhenggcov-files-i386-y += i386-softmmu/hw/timer/mc146818rtc.c
29646e7b706SFam Zhenggcov-files-x86_64-y = $(subst i386-softmmu/,x86_64-softmmu/,$(gcov-files-i386-y))
29729531542SThomas Huth
298d2ab58ffSThomas Huthcheck-qtest-alpha-y = tests/boot-serial-test$(EXESUF)
299d2ab58ffSThomas Huth
300*598a29f3SThomas Huthcheck-qtest-m68k-y = tests/boot-serial-test$(EXESUF)
301*598a29f3SThomas Huth
30246e7b706SFam Zhengcheck-qtest-mips-y = tests/endianness-test$(EXESUF)
30329531542SThomas Huth
30446e7b706SFam Zhengcheck-qtest-mips64-y = tests/endianness-test$(EXESUF)
30529531542SThomas Huth
30646e7b706SFam Zhengcheck-qtest-mips64el-y = tests/endianness-test$(EXESUF)
30729531542SThomas Huth
30846e7b706SFam Zhengcheck-qtest-ppc-y = tests/endianness-test$(EXESUF)
30929531542SThomas Huthcheck-qtest-ppc-y += tests/boot-order-test$(EXESUF)
31029531542SThomas Huthcheck-qtest-ppc-y += tests/prom-env-test$(EXESUF)
31129531542SThomas Huthcheck-qtest-ppc-y += tests/drive_del-test$(EXESUF)
312d2ab58ffSThomas Huthcheck-qtest-ppc-y += tests/boot-serial-test$(EXESUF)
31329531542SThomas Huth
31429531542SThomas Huthcheck-qtest-ppc64-y = tests/spapr-phb-test$(EXESUF)
31529531542SThomas Huthgcov-files-ppc64-y = ppc64-softmmu/hw/ppc/spapr_pci.c
31629531542SThomas Huthcheck-qtest-ppc64-y += tests/endianness-test$(EXESUF)
31729531542SThomas Huthcheck-qtest-ppc64-y += tests/boot-order-test$(EXESUF)
31829531542SThomas Huthcheck-qtest-ppc64-y += tests/prom-env-test$(EXESUF)
319ca8e4bf4SDavid Gibsoncheck-qtest-ppc64-y += tests/pnv-xscom-test$(EXESUF)
32029531542SThomas Huthcheck-qtest-ppc64-y += tests/drive_del-test$(EXESUF)
3212656bfd9SJuan Quintelacheck-qtest-ppc64-y += tests/migration-test$(EXESUF)
322d2ab58ffSThomas Huthcheck-qtest-ppc64-y += tests/boot-serial-test$(EXESUF)
323eeddd59fSLaurent Viviercheck-qtest-ppc64-y += tests/rtas-test$(EXESUF)
324d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
325aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-ohci-test$(EXESUF)
326aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-ohci.c
327aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-uhci-test$(EXESUF)
328aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-uhci.c
329aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-xhci-test$(EXESUF)
330aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-xhci.c
33130ca440eSLaurent Viviercheck-qtest-ppc64-y += $(check-qtest-virtio-y)
332d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
3337f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
3347f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
335f38a0b2fSLaurent Viviercheck-qtest-ppc64-y += tests/display-vga-test$(EXESUF)
33663baf8bfSIgor Mammedovcheck-qtest-ppc64-y += tests/numa-test$(EXESUF)
337e0580342SKamil Rytarowskicheck-qtest-ppc64-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF)
33829531542SThomas Huth
33946e7b706SFam Zhengcheck-qtest-sh4-y = tests/endianness-test$(EXESUF)
34029531542SThomas Huth
34146e7b706SFam Zhengcheck-qtest-sh4eb-y = tests/endianness-test$(EXESUF)
34229531542SThomas Huth
34329531542SThomas Huthcheck-qtest-sparc-y = tests/prom-env-test$(EXESUF)
34429531542SThomas Huth#check-qtest-sparc-y += tests/m48t59-test$(EXESUF)
34529531542SThomas Huth#gcov-files-sparc-y = hw/timer/m48t59.c
34629531542SThomas Huth
34746e7b706SFam Zhengcheck-qtest-sparc64-y = tests/endianness-test$(EXESUF)
34846e7b706SFam Zheng#check-qtest-sparc64-y += tests/m48t59-test$(EXESUF)
34929531542SThomas Huth#gcov-files-sparc64-y += hw/timer/m48t59.c
3506b591ad6SThomas Huthcheck-qtest-sparc64-y += tests/prom-env-test$(EXESUF)
35129531542SThomas Huth
35246e7b706SFam Zhengcheck-qtest-arm-y = tests/tmp105-test$(EXESUF)
3531f5c1cfbSThomas Huthcheck-qtest-arm-y += tests/ds1338-test$(EXESUF)
3547a2334f7SCédric Le Goatercheck-qtest-arm-y += tests/m25p80-test$(EXESUF)
35546e7b706SFam Zhenggcov-files-arm-y += hw/misc/tmp105.c
35646e7b706SFam Zhengcheck-qtest-arm-y += tests/virtio-blk-test$(EXESUF)
35746e7b706SFam Zhenggcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c
358882fac37SDmitry Osipenkocheck-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
359882fac37SDmitry Osipenkogcov-files-arm-y += hw/timer/arm_mptimer.c
36029531542SThomas Huth
36163baf8bfSIgor Mammedovcheck-qtest-aarch64-y = tests/numa-test$(EXESUF)
36263baf8bfSIgor Mammedov
36346e7b706SFam Zhengcheck-qtest-microblazeel-y = $(check-qtest-microblaze-y)
36429531542SThomas Huth
36546e7b706SFam Zhengcheck-qtest-xtensaeb-y = $(check-qtest-xtensa-y)
36646e7b706SFam Zheng
367d2ab58ffSThomas Huthcheck-qtest-s390x-y = tests/boot-serial-test$(EXESUF)
368b1b2feacSThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
369ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
370ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
371ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
3722f84a92eSThomas Huthcheck-qtest-s390x-y += tests/drive_del-test$(EXESUF)
373d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-balloon-test$(EXESUF)
374d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-console-test$(EXESUF)
375d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-serial-test$(EXESUF)
376d2ab58ffSThomas Huth
37746e7b706SFam Zhengcheck-qtest-generic-y += tests/qom-test$(EXESUF)
37878f86a2bSThomas Huthcheck-qtest-generic-y += tests/test-hmp$(EXESUF)
37946e7b706SFam Zheng
38046e7b706SFam Zhengqapi-schema += alternate-any.json
38146e7b706SFam Zhengqapi-schema += alternate-array.json
38246e7b706SFam Zhengqapi-schema += alternate-base.json
38346e7b706SFam Zhengqapi-schema += alternate-clash.json
38446e7b706SFam Zhengqapi-schema += alternate-conflict-dict.json
385c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-bool.json
386c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-int.json
38746e7b706SFam Zhengqapi-schema += alternate-conflict-string.json
388fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-bool-string.json
389fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-num-string.json
39046e7b706SFam Zhengqapi-schema += alternate-empty.json
39146e7b706SFam Zhengqapi-schema += alternate-nested.json
39246e7b706SFam Zhengqapi-schema += alternate-unknown.json
39346e7b706SFam Zhengqapi-schema += args-alternate.json
39446e7b706SFam Zhengqapi-schema += args-any.json
39546e7b706SFam Zhengqapi-schema += args-array-empty.json
39646e7b706SFam Zhengqapi-schema += args-array-unknown.json
397c818408eSEric Blakeqapi-schema += args-bad-boxed.json
398c818408eSEric Blakeqapi-schema += args-boxed-anon.json
399c818408eSEric Blakeqapi-schema += args-boxed-empty.json
400c818408eSEric Blakeqapi-schema += args-boxed-string.json
40146e7b706SFam Zhengqapi-schema += args-int.json
40246e7b706SFam Zhengqapi-schema += args-invalid.json
40346e7b706SFam Zhengqapi-schema += args-member-array-bad.json
40446e7b706SFam Zhengqapi-schema += args-member-case.json
40546e7b706SFam Zhengqapi-schema += args-member-unknown.json
40646e7b706SFam Zhengqapi-schema += args-name-clash.json
40746e7b706SFam Zhengqapi-schema += args-union.json
40846e7b706SFam Zhengqapi-schema += args-unknown.json
40946e7b706SFam Zhengqapi-schema += bad-base.json
41046e7b706SFam Zhengqapi-schema += bad-data.json
41146e7b706SFam Zhengqapi-schema += bad-ident.json
41246e7b706SFam Zhengqapi-schema += bad-type-bool.json
41346e7b706SFam Zhengqapi-schema += bad-type-dict.json
41446e7b706SFam Zhengqapi-schema += bad-type-int.json
41546e7b706SFam Zhengqapi-schema += base-cycle-direct.json
41646e7b706SFam Zhengqapi-schema += base-cycle-indirect.json
41746e7b706SFam Zhengqapi-schema += command-int.json
41846e7b706SFam Zhengqapi-schema += comments.json
419f641d06aSMarkus Armbrusterqapi-schema += doc-bad-alternate-member.json
420bdc001caSMarkus Armbrusterqapi-schema += doc-bad-command-arg.json
421cfa438ffSMarkus Armbrusterqapi-schema += doc-bad-section.json
4223313b612SMarc-André Lureauqapi-schema += doc-bad-symbol.json
423f641d06aSMarkus Armbrusterqapi-schema += doc-bad-union-member.json
4242028be8eSMarkus Armbrusterqapi-schema += doc-before-include.json
4252028be8eSMarkus Armbrusterqapi-schema += doc-before-pragma.json
4263313b612SMarc-André Lureauqapi-schema += doc-duplicated-arg.json
4273313b612SMarc-André Lureauqapi-schema += doc-duplicated-return.json
4283313b612SMarc-André Lureauqapi-schema += doc-duplicated-since.json
4293313b612SMarc-André Lureauqapi-schema += doc-empty-arg.json
4303313b612SMarc-André Lureauqapi-schema += doc-empty-section.json
4313313b612SMarc-André Lureauqapi-schema += doc-empty-symbol.json
43280d1f2e4SMarkus Armbrusterqapi-schema += doc-good.json
4333313b612SMarc-André Lureauqapi-schema += doc-interleaved-section.json
4343313b612SMarc-André Lureauqapi-schema += doc-invalid-end.json
4353313b612SMarc-André Lureauqapi-schema += doc-invalid-end2.json
4363313b612SMarc-André Lureauqapi-schema += doc-invalid-return.json
4373313b612SMarc-André Lureauqapi-schema += doc-invalid-section.json
4383313b612SMarc-André Lureauqapi-schema += doc-invalid-start.json
4393313b612SMarc-André Lureauqapi-schema += doc-missing-colon.json
4403313b612SMarc-André Lureauqapi-schema += doc-missing-expr.json
4413313b612SMarc-André Lureauqapi-schema += doc-missing-space.json
442cfa438ffSMarkus Armbrusterqapi-schema += doc-missing.json
4432028be8eSMarkus Armbrusterqapi-schema += doc-no-symbol.json
44446e7b706SFam Zhengqapi-schema += double-data.json
44546e7b706SFam Zhengqapi-schema += double-type.json
44646e7b706SFam Zhengqapi-schema += duplicate-key.json
44746e7b706SFam Zhengqapi-schema += empty.json
44846e7b706SFam Zhengqapi-schema += enum-bad-name.json
44946e7b706SFam Zhengqapi-schema += enum-bad-prefix.json
45046e7b706SFam Zhengqapi-schema += enum-clash-member.json
45146e7b706SFam Zhengqapi-schema += enum-dict-member.json
45246e7b706SFam Zhengqapi-schema += enum-int-member.json
45346e7b706SFam Zhengqapi-schema += enum-member-case.json
45446e7b706SFam Zhengqapi-schema += enum-missing-data.json
45546e7b706SFam Zhengqapi-schema += enum-wrong-data.json
45646e7b706SFam Zhengqapi-schema += escape-outside-string.json
45746e7b706SFam Zhengqapi-schema += escape-too-big.json
45846e7b706SFam Zhengqapi-schema += escape-too-short.json
459c818408eSEric Blakeqapi-schema += event-boxed-empty.json
46046e7b706SFam Zhengqapi-schema += event-case.json
46146e7b706SFam Zhengqapi-schema += event-nest-struct.json
46246e7b706SFam Zhengqapi-schema += flat-union-array-branch.json
46346e7b706SFam Zhengqapi-schema += flat-union-bad-base.json
46446e7b706SFam Zhengqapi-schema += flat-union-bad-discriminator.json
46546e7b706SFam Zhengqapi-schema += flat-union-base-any.json
46646e7b706SFam Zhengqapi-schema += flat-union-base-union.json
46746e7b706SFam Zhengqapi-schema += flat-union-clash-member.json
46846e7b706SFam Zhengqapi-schema += flat-union-empty.json
469d0b18239SEric Blakeqapi-schema += flat-union-incomplete-branch.json
47046e7b706SFam Zhengqapi-schema += flat-union-inline.json
47146e7b706SFam Zhengqapi-schema += flat-union-int-branch.json
47246e7b706SFam Zhengqapi-schema += flat-union-invalid-branch-key.json
47346e7b706SFam Zhengqapi-schema += flat-union-invalid-discriminator.json
47446e7b706SFam Zhengqapi-schema += flat-union-no-base.json
47546e7b706SFam Zhengqapi-schema += flat-union-optional-discriminator.json
47646e7b706SFam Zhengqapi-schema += flat-union-string-discriminator.json
47746e7b706SFam Zhengqapi-schema += funny-char.json
47846e7b706SFam Zhengqapi-schema += ident-with-escape.json
47946e7b706SFam Zhengqapi-schema += include-before-err.json
48046e7b706SFam Zhengqapi-schema += include-cycle.json
481bc52d03fSMarkus Armbrusterqapi-schema += include-extra-junk.json
48246e7b706SFam Zhengqapi-schema += include-format-err.json
48346e7b706SFam Zhengqapi-schema += include-nested-err.json
48446e7b706SFam Zhengqapi-schema += include-no-file.json
48546e7b706SFam Zhengqapi-schema += include-non-file.json
48646e7b706SFam Zhengqapi-schema += include-relpath.json
48746e7b706SFam Zhengqapi-schema += include-repetition.json
48846e7b706SFam Zhengqapi-schema += include-self-cycle.json
48946e7b706SFam Zhengqapi-schema += include-simple.json
49046e7b706SFam Zhengqapi-schema += indented-expr.json
49146e7b706SFam Zhengqapi-schema += leading-comma-list.json
49246e7b706SFam Zhengqapi-schema += leading-comma-object.json
49346e7b706SFam Zhengqapi-schema += missing-colon.json
49446e7b706SFam Zhengqapi-schema += missing-comma-list.json
49546e7b706SFam Zhengqapi-schema += missing-comma-object.json
49646e7b706SFam Zhengqapi-schema += missing-type.json
49746e7b706SFam Zhengqapi-schema += nested-struct-data.json
49846e7b706SFam Zhengqapi-schema += non-objects.json
499bc52d03fSMarkus Armbrusterqapi-schema += pragma-doc-required-crap.json
500bc52d03fSMarkus Armbrusterqapi-schema += pragma-extra-junk.json
5012cfbae3cSMarkus Armbrusterqapi-schema += pragma-name-case-whitelist-crap.json
502bc52d03fSMarkus Armbrusterqapi-schema += pragma-non-dict.json
5031554a8faSMarkus Armbrusterqapi-schema += pragma-returns-whitelist-crap.json
50446e7b706SFam Zhengqapi-schema += qapi-schema-test.json
50546e7b706SFam Zhengqapi-schema += quoted-structural-chars.json
50646e7b706SFam Zhengqapi-schema += redefined-builtin.json
50746e7b706SFam Zhengqapi-schema += redefined-command.json
50846e7b706SFam Zhengqapi-schema += redefined-event.json
50946e7b706SFam Zhengqapi-schema += redefined-type.json
51046e7b706SFam Zhengqapi-schema += reserved-command-q.json
51146e7b706SFam Zhengqapi-schema += reserved-enum-q.json
51246e7b706SFam Zhengqapi-schema += reserved-member-has.json
51346e7b706SFam Zhengqapi-schema += reserved-member-q.json
51446e7b706SFam Zhengqapi-schema += reserved-member-u.json
51546e7b706SFam Zhengqapi-schema += reserved-member-underscore.json
51646e7b706SFam Zhengqapi-schema += reserved-type-kind.json
51746e7b706SFam Zhengqapi-schema += reserved-type-list.json
51846e7b706SFam Zhengqapi-schema += returns-alternate.json
51946e7b706SFam Zhengqapi-schema += returns-array-bad.json
52046e7b706SFam Zhengqapi-schema += returns-dict.json
52146e7b706SFam Zhengqapi-schema += returns-unknown.json
52246e7b706SFam Zhengqapi-schema += returns-whitelist.json
52346e7b706SFam Zhengqapi-schema += struct-base-clash-deep.json
52446e7b706SFam Zhengqapi-schema += struct-base-clash.json
52546e7b706SFam Zhengqapi-schema += struct-data-invalid.json
52646e7b706SFam Zhengqapi-schema += struct-member-invalid.json
52746e7b706SFam Zhengqapi-schema += trailing-comma-list.json
52846e7b706SFam Zhengqapi-schema += trailing-comma-object.json
52946e7b706SFam Zhengqapi-schema += type-bypass-bad-gen.json
53046e7b706SFam Zhengqapi-schema += unclosed-list.json
53146e7b706SFam Zhengqapi-schema += unclosed-object.json
53246e7b706SFam Zhengqapi-schema += unclosed-string.json
53346e7b706SFam Zhengqapi-schema += unicode-str.json
534707fb2d3SMarkus Armbrusterqapi-schema += union-base-empty.json
53546e7b706SFam Zhengqapi-schema += union-base-no-discriminator.json
53646e7b706SFam Zhengqapi-schema += union-branch-case.json
53746e7b706SFam Zhengqapi-schema += union-clash-branches.json
53846e7b706SFam Zhengqapi-schema += union-empty.json
53946e7b706SFam Zhengqapi-schema += union-invalid-base.json
54046e7b706SFam Zhengqapi-schema += union-optional-branch.json
54146e7b706SFam Zhengqapi-schema += union-unknown.json
54246e7b706SFam Zhengqapi-schema += unknown-escape.json
54346e7b706SFam Zhengqapi-schema += unknown-expr-key.json
5443313b612SMarc-André Lureau
5453313b612SMarc-André Lureau
54646e7b706SFam Zhengcheck-qapi-schema-y := $(addprefix tests/qapi-schema/, $(qapi-schema))
54746e7b706SFam Zheng
5484f04f13cSDaniel P. BerrangeGENERATED_FILES += tests/test-qapi-types.h tests/test-qapi-visit.h \
54946e7b706SFam Zheng	tests/test-qmp-commands.h tests/test-qapi-event.h \
55046e7b706SFam Zheng	tests/test-qmp-introspect.h
55146e7b706SFam Zheng
55201b2ffceSMarc-André Lureautest-obj-y = tests/check-qnum.o tests/check-qstring.o tests/check-qdict.o \
5531b76e838SMax Reitz	tests/check-qlist.o tests/check-qnull.o tests/check-qobject.o \
554382176b4SMarc-André Lureau	tests/check-qjson.o tests/check-qlit.o \
55546e7b706SFam Zheng	tests/test-coroutine.o tests/test-string-output-visitor.o \
556b3db211fSDaniel P. Berrange	tests/test-string-input-visitor.o tests/test-qobject-output-visitor.o \
557a15fcc3cSEric Blake	tests/test-clone-visitor.o \
55877c47de2SMarkus Armbruster	tests/test-qobject-input-visitor.o \
55946e7b706SFam Zheng	tests/test-qmp-commands.o tests/test-visitor-serialization.o \
56046e7b706SFam Zheng	tests/test-x86-cpuid.o tests/test-mul64.o tests/test-int128.o \
56146e7b706SFam Zheng	tests/test-opts-visitor.o tests/test-qmp-event.o \
562ff9249b7SEmilio G. Cota	tests/rcutorture.o tests/test-rcu-list.o \
563f539fbe3SJose Ricardo Ziviani	tests/test-qdist.o tests/test-shift128.o \
564070e3edcSEmilio G. Cota	tests/test-qht.o tests/qht-bench.o tests/test-qht-par.o \
565070e3edcSEmilio G. Cota	tests/atomic_add-bench.o
56646e7b706SFam Zheng
56746e7b706SFam Zheng$(test-obj-y): QEMU_INCLUDES += -Itests
56846e7b706SFam ZhengQEMU_CFLAGS += -I$(SRC_PATH)/tests
56946e7b706SFam Zheng
57046e7b706SFam Zheng
57146e7b706SFam Zheng# Deps that are common to various different sets of tests below
572ebedb37cSPaolo Bonzinitest-util-obj-y = libqemuutil.a
57346e7b706SFam Zhengtest-qom-obj-y = $(qom-obj-y) $(test-util-obj-y)
57446e7b706SFam Zhengtest-qapi-obj-y = tests/test-qapi-visit.o tests/test-qapi-types.o \
57546e7b706SFam Zheng	tests/test-qapi-event.o tests/test-qmp-introspect.o \
57646e7b706SFam Zheng	$(test-qom-obj-y)
5771efd9d5eSLongpeng(Mike)benchmark-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y)
57846e7b706SFam Zhengtest-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y)
57946e7b706SFam Zhengtest-io-obj-y = $(io-obj-y) $(test-crypto-obj-y)
5800c330a73SPaolo Bonzinitest-block-obj-y = $(block-obj-y) $(test-io-obj-y) tests/iothread.o
58146e7b706SFam Zheng
58201b2ffceSMarc-André Lureautests/check-qnum$(EXESUF): tests/check-qnum.o $(test-util-obj-y)
58346e7b706SFam Zhengtests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y)
58446e7b706SFam Zhengtests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y)
58546e7b706SFam Zhengtests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y)
58646e7b706SFam Zhengtests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y)
5871b76e838SMax Reitztests/check-qobject$(EXESUF): tests/check-qobject.o $(test-util-obj-y)
58846e7b706SFam Zhengtests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y)
589382176b4SMarc-André Lureautests/check-qlit$(EXESUF): tests/check-qlit.o $(test-util-obj-y)
59046e7b706SFam Zhengtests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y)
59146e7b706SFam Zhengtests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y)
592ea3af47dSMarc-André Lureau
593c2b38b27SPaolo Bonzinitests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y)
59446e7b706SFam Zhengtests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y)
59546e7b706SFam Zhengtests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y)
5960c330a73SPaolo Bonzinitests/test-aio-multithread$(EXESUF): tests/test-aio-multithread.o $(test-block-obj-y)
59746e7b706SFam Zhengtests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y)
5989ef8112aSAlberto Garciatests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y)
59946e7b706SFam Zhengtests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y)
60046e7b706SFam Zhengtests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y)
60146e7b706SFam Zhengtests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
602a3b52535SVladimir Sementsov-Ogievskiytests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y)
60346e7b706SFam Zhengtests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
604aa3544c3SJuan Quintelatests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y)
60505cb8ed5SAlistair Francistests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o $(test-util-obj-y)
60646e7b706SFam Zhengtests/test-int128$(EXESUF): tests/test-int128.o
60746e7b706SFam Zhengtests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
60846e7b706SFam Zhengtests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
609ff9249b7SEmilio G. Cotatests/test-qdist$(EXESUF): tests/test-qdist.o $(test-util-obj-y)
6101a95404fSEmilio G. Cotatests/test-qht$(EXESUF): tests/test-qht.o $(test-util-obj-y)
611896a9ee9SEmilio G. Cotatests/test-qht-par$(EXESUF): tests/test-qht-par.o tests/qht-bench$(EXESUF) $(test-util-obj-y)
612515864a0SEmilio G. Cotatests/qht-bench$(EXESUF): tests/qht-bench.o $(test-util-obj-y)
613efad6682SRichard Hendersontests/test-bufferiszero$(EXESUF): tests/test-bufferiszero.o $(test-util-obj-y)
614070e3edcSEmilio G. Cotatests/atomic_add-bench$(EXESUF): tests/atomic_add-bench.o $(test-util-obj-y)
61546e7b706SFam Zheng
61646e7b706SFam Zhengtests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \
61746e7b706SFam Zheng	hw/core/qdev.o hw/core/qdev-properties.o hw/core/hotplug.o\
61846e7b706SFam Zheng	hw/core/bus.o \
61946e7b706SFam Zheng	hw/core/irq.o \
62046e7b706SFam Zheng	hw/core/fw-path-provider.o \
6212f7b92a0SPaolo Bonzini	hw/core/reset.o \
62246e7b706SFam Zheng	$(test-qapi-obj-y)
62346e7b706SFam Zhengtests/test-vmstate$(EXESUF): tests/test-vmstate.o \
624576d1abcSJuan Quintela	migration/vmstate.o migration/vmstate-types.o migration/qemu-file.o \
62546e7b706SFam Zheng        migration/qemu-file-channel.o migration/qjson.o \
62646e7b706SFam Zheng	$(test-io-obj-y)
627c2b38b27SPaolo Bonzinitests/test-timed-average$(EXESUF): tests/test-timed-average.o $(test-util-obj-y)
628ebedb37cSPaolo Bonzinitests/test-base64$(EXESUF): tests/test-base64.o $(test-util-obj-y)
6299ee24e98SPaolo Bonzinitests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o
63046e7b706SFam Zheng
63146e7b706SFam Zhengtests/test-logging$(EXESUF): tests/test-logging.o $(test-util-obj-y)
63246e7b706SFam Zheng
633b3110466SChanglong Xietests/test-replication$(EXESUF): tests/test-replication.o $(test-util-obj-y) \
634b3110466SChanglong Xie	$(test-block-obj-y)
635b3110466SChanglong Xie
63646e7b706SFam Zhengtests/test-qapi-types.c tests/test-qapi-types.h :\
63746e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
63846e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
63946e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6400bdb12c7SPeter Maydell		"GEN","$@")
64146e7b706SFam Zhengtests/test-qapi-visit.c tests/test-qapi-visit.h :\
64246e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
64346e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
64446e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6450bdb12c7SPeter Maydell		"GEN","$@")
64646e7b706SFam Zhengtests/test-qmp-commands.h tests/test-qmp-marshal.c :\
64746e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
64846e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
64946e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6500bdb12c7SPeter Maydell		"GEN","$@")
65146e7b706SFam Zhengtests/test-qapi-event.c tests/test-qapi-event.h :\
65246e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
65346e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
65446e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6550bdb12c7SPeter Maydell		"GEN","$@")
65646e7b706SFam Zhengtests/test-qmp-introspect.c tests/test-qmp-introspect.h :\
65746e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py)
65846e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \
65946e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6600bdb12c7SPeter Maydell		"GEN","$@")
66146e7b706SFam Zheng
66280d1f2e4SMarkus Armbrustertests/qapi-schema/doc-good.test.texi: $(SRC_PATH)/tests/qapi-schema/doc-good.json $(SRC_PATH)/scripts/qapi2texi.py $(qapi-py)
66380d1f2e4SMarkus Armbruster	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
66480d1f2e4SMarkus Armbruster
66546e7b706SFam Zhengtests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y)
66646e7b706SFam Zhengtests/test-string-input-visitor$(EXESUF): tests/test-string-input-visitor.o $(test-qapi-obj-y)
66746e7b706SFam Zhengtests/test-qmp-event$(EXESUF): tests/test-qmp-event.o $(test-qapi-obj-y)
668b3db211fSDaniel P. Berrangetests/test-qobject-output-visitor$(EXESUF): tests/test-qobject-output-visitor.o $(test-qapi-obj-y)
669a15fcc3cSEric Blaketests/test-clone-visitor$(EXESUF): tests/test-clone-visitor.o $(test-qapi-obj-y)
670b3db211fSDaniel P. Berrangetests/test-qobject-input-visitor$(EXESUF): tests/test-qobject-input-visitor.o $(test-qapi-obj-y)
67146e7b706SFam Zhengtests/test-qmp-commands$(EXESUF): tests/test-qmp-commands.o tests/test-qmp-marshal.o $(test-qapi-obj-y)
67246e7b706SFam Zhengtests/test-visitor-serialization$(EXESUF): tests/test-visitor-serialization.o $(test-qapi-obj-y)
67346e7b706SFam Zhengtests/test-opts-visitor$(EXESUF): tests/test-opts-visitor.o $(test-qapi-obj-y)
67446e7b706SFam Zheng
675f539fbe3SJose Ricardo Zivianitests/test-shift128$(EXESUF): tests/test-shift128.o $(test-util-obj-y)
67646e7b706SFam Zhengtests/test-mul64$(EXESUF): tests/test-mul64.o $(test-util-obj-y)
67746e7b706SFam Zhengtests/test-bitops$(EXESUF): tests/test-bitops.o $(test-util-obj-y)
678c3f8962fSAlex Bennéetests/test-bitcnt$(EXESUF): tests/test-bitcnt.o $(test-util-obj-y)
67946e7b706SFam Zhengtests/test-crypto-hash$(EXESUF): tests/test-crypto-hash.o $(test-crypto-obj-y)
6800128cd29SLongpeng(Mike)tests/benchmark-crypto-hash$(EXESUF): tests/benchmark-crypto-hash.o $(test-crypto-obj-y)
6814fd460bfSLongpeng(Mike)tests/test-crypto-hmac$(EXESUF): tests/test-crypto-hmac.o $(test-crypto-obj-y)
682c7a9af4bSLongpeng(Mike)tests/benchmark-crypto-hmac$(EXESUF): tests/benchmark-crypto-hmac.o $(test-crypto-obj-y)
68346e7b706SFam Zhengtests/test-crypto-cipher$(EXESUF): tests/test-crypto-cipher.o $(test-crypto-obj-y)
6841efd9d5eSLongpeng(Mike)tests/benchmark-crypto-cipher$(EXESUF): tests/benchmark-crypto-cipher.o $(test-crypto-obj-y)
68546e7b706SFam Zhengtests/test-crypto-secret$(EXESUF): tests/test-crypto-secret.o $(test-crypto-obj-y)
68646e7b706SFam Zhengtests/test-crypto-xts$(EXESUF): tests/test-crypto-xts.o $(test-crypto-obj-y)
68746e7b706SFam Zheng
68846e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-cflags := $(TASN1_CFLAGS)
68946e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-libs := $(TASN1_LIBS)
69046e7b706SFam Zhengtests/pkix_asn1_tab.o-cflags := $(TASN1_CFLAGS)
69146e7b706SFam Zheng
69246e7b706SFam Zhengtests/test-crypto-tlscredsx509.o-cflags := $(TASN1_CFLAGS)
69346e7b706SFam Zhengtests/test-crypto-tlscredsx509$(EXESUF): tests/test-crypto-tlscredsx509.o \
69446e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y)
69546e7b706SFam Zheng
69646e7b706SFam Zhengtests/test-crypto-tlssession.o-cflags := $(TASN1_CFLAGS)
69746e7b706SFam Zhengtests/test-crypto-tlssession$(EXESUF): tests/test-crypto-tlssession.o \
69846e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y)
69946e7b706SFam Zhengtests/test-io-task$(EXESUF): tests/test-io-task.o $(test-io-obj-y)
70046e7b706SFam Zhengtests/test-io-channel-socket$(EXESUF): tests/test-io-channel-socket.o \
70146e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
70246e7b706SFam Zhengtests/test-io-channel-file$(EXESUF): tests/test-io-channel-file.o \
70346e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
70446e7b706SFam Zhengtests/test-io-channel-tls$(EXESUF): tests/test-io-channel-tls.o \
70546e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \
70646e7b706SFam Zheng	tests/io-channel-helpers.o $(test-io-obj-y)
70746e7b706SFam Zhengtests/test-io-channel-command$(EXESUF): tests/test-io-channel-command.o \
70846e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
70946e7b706SFam Zhengtests/test-io-channel-buffer$(EXESUF): tests/test-io-channel-buffer.o \
71046e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
71146e7b706SFam Zhengtests/test-crypto-pbkdf$(EXESUF): tests/test-crypto-pbkdf.o $(test-crypto-obj-y)
71246e7b706SFam Zhengtests/test-crypto-ivgen$(EXESUF): tests/test-crypto-ivgen.o $(test-crypto-obj-y)
71346e7b706SFam Zhengtests/test-crypto-afsplit$(EXESUF): tests/test-crypto-afsplit.o $(test-crypto-obj-y)
71446e7b706SFam Zhengtests/test-crypto-block$(EXESUF): tests/test-crypto-block.o $(test-crypto-obj-y)
71546e7b706SFam Zheng
71646e7b706SFam Zhenglibqos-obj-y = tests/libqos/pci.o tests/libqos/fw_cfg.o tests/libqos/malloc.o
71746e7b706SFam Zhenglibqos-obj-y += tests/libqos/i2c.o tests/libqos/libqos.o
7188d6ef7c9SLaurent Vivierlibqos-spapr-obj-y = $(libqos-obj-y) tests/libqos/malloc-spapr.o
7198d6ef7c9SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/libqos-spapr.o
720eeddd59fSLaurent Vivierlibqos-spapr-obj-y += tests/libqos/rtas.o
721cf716b31SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/pci-spapr.o
72246e7b706SFam Zhenglibqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o
72346e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/malloc-pc.o tests/libqos/libqos-pc.o
72446e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/ahci.o
72546e7b706SFam Zhenglibqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o
72646e7b706SFam Zhenglibqos-imx-obj-y = $(libqos-obj-y) tests/libqos/i2c-imx.o
727aa9026fdSLaurent Vivierlibqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/usb.o
72830ca440eSLaurent 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
72946e7b706SFam Zheng
730f66e7ac8SMarkus Armbrustertests/qmp-test$(EXESUF): tests/qmp-test.o
73146e7b706SFam Zhengtests/device-introspect-test$(EXESUF): tests/device-introspect-test.o
73246e7b706SFam Zhengtests/rtc-test$(EXESUF): tests/rtc-test.o
73346e7b706SFam Zhengtests/m48t59-test$(EXESUF): tests/m48t59-test.o
73446e7b706SFam Zhengtests/endianness-test$(EXESUF): tests/endianness-test.o
73546e7b706SFam Zhengtests/spapr-phb-test$(EXESUF): tests/spapr-phb-test.o $(libqos-obj-y)
736fcbf4a3cSThomas Huthtests/prom-env-test$(EXESUF): tests/prom-env-test.o $(libqos-obj-y)
737eeddd59fSLaurent Viviertests/rtas-test$(EXESUF): tests/rtas-test.o $(libqos-spapr-obj-y)
73846e7b706SFam Zhengtests/fdc-test$(EXESUF): tests/fdc-test.o
73946e7b706SFam Zhengtests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y)
74046e7b706SFam Zhengtests/ahci-test$(EXESUF): tests/ahci-test.o $(libqos-pc-obj-y)
74146e7b706SFam Zhengtests/ipmi-kcs-test$(EXESUF): tests/ipmi-kcs-test.o
74246e7b706SFam Zhengtests/ipmi-bt-test$(EXESUF): tests/ipmi-bt-test.o
74346e7b706SFam Zhengtests/hd-geo-test$(EXESUF): tests/hd-geo-test.o
74446e7b706SFam Zhengtests/boot-order-test$(EXESUF): tests/boot-order-test.o $(libqos-obj-y)
745d2ab58ffSThomas Huthtests/boot-serial-test$(EXESUF): tests/boot-serial-test.o $(libqos-obj-y)
74646e7b706SFam Zhengtests/bios-tables-test$(EXESUF): tests/bios-tables-test.o \
7473248f1b4SBen Warren	tests/boot-sector.o tests/acpi-utils.o $(libqos-obj-y)
74846e7b706SFam Zhengtests/pxe-test$(EXESUF): tests/pxe-test.o tests/boot-sector.o $(libqos-obj-y)
74946e7b706SFam Zhengtests/tmp105-test$(EXESUF): tests/tmp105-test.o $(libqos-omap-obj-y)
75046e7b706SFam Zhengtests/ds1338-test$(EXESUF): tests/ds1338-test.o $(libqos-imx-obj-y)
7517a2334f7SCédric Le Goatertests/m25p80-test$(EXESUF): tests/m25p80-test.o
75246e7b706SFam Zhengtests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y)
75346e7b706SFam Zhengtests/q35-test$(EXESUF): tests/q35-test.o $(libqos-pc-obj-y)
75446e7b706SFam Zhengtests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y)
75546e7b706SFam Zhengtests/e1000-test$(EXESUF): tests/e1000-test.o
75646e7b706SFam Zhengtests/e1000e-test$(EXESUF): tests/e1000e-test.o $(libqos-pc-obj-y)
75746e7b706SFam Zhengtests/rtl8139-test$(EXESUF): tests/rtl8139-test.o $(libqos-pc-obj-y)
75846e7b706SFam Zhengtests/pcnet-test$(EXESUF): tests/pcnet-test.o
759ca8e4bf4SDavid Gibsontests/pnv-xscom-test$(EXESUF): tests/pnv-xscom-test.o
76046e7b706SFam Zhengtests/eepro100-test$(EXESUF): tests/eepro100-test.o
76146e7b706SFam Zhengtests/vmxnet3-test$(EXESUF): tests/vmxnet3-test.o
76246e7b706SFam Zhengtests/ne2000-test$(EXESUF): tests/ne2000-test.o
76346e7b706SFam Zhengtests/wdt_ib700-test$(EXESUF): tests/wdt_ib700-test.o
76446e7b706SFam Zhengtests/tco-test$(EXESUF): tests/tco-test.o $(libqos-pc-obj-y)
765d0a5cc5bSThomas Huthtests/virtio-balloon-test$(EXESUF): tests/virtio-balloon-test.o $(libqos-virtio-obj-y)
76646e7b706SFam Zhengtests/virtio-blk-test$(EXESUF): tests/virtio-blk-test.o $(libqos-virtio-obj-y)
76746e7b706SFam Zhengtests/virtio-net-test$(EXESUF): tests/virtio-net-test.o $(libqos-pc-obj-y) $(libqos-virtio-obj-y)
76846e7b706SFam Zhengtests/virtio-rng-test$(EXESUF): tests/virtio-rng-test.o $(libqos-pc-obj-y)
76946e7b706SFam Zhengtests/virtio-scsi-test$(EXESUF): tests/virtio-scsi-test.o $(libqos-virtio-obj-y)
770557a4cc0SGreg Kurztests/virtio-9p-test$(EXESUF): tests/virtio-9p-test.o $(libqos-virtio-obj-y)
771d0a5cc5bSThomas Huthtests/virtio-serial-test$(EXESUF): tests/virtio-serial-test.o $(libqos-virtio-obj-y)
772d0a5cc5bSThomas Huthtests/virtio-console-test$(EXESUF): tests/virtio-console-test.o $(libqos-virtio-obj-y)
77346e7b706SFam Zhengtests/tpci200-test$(EXESUF): tests/tpci200-test.o
77446e7b706SFam Zhengtests/display-vga-test$(EXESUF): tests/display-vga-test.o
77546e7b706SFam Zhengtests/ipoctal232-test$(EXESUF): tests/ipoctal232-test.o
77646e7b706SFam Zhengtests/qom-test$(EXESUF): tests/qom-test.o
77778f86a2bSThomas Huthtests/test-hmp$(EXESUF): tests/test-hmp.o
7782f84a92eSThomas Huthtests/drive_del-test$(EXESUF): tests/drive_del-test.o $(libqos-virtio-obj-y)
77946e7b706SFam Zhengtests/qdev-monitor-test$(EXESUF): tests/qdev-monitor-test.o $(libqos-pc-obj-y)
78046e7b706SFam Zhengtests/nvme-test$(EXESUF): tests/nvme-test.o
78146e7b706SFam Zhengtests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
78246e7b706SFam Zhengtests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
78346e7b706SFam Zhengtests/ac97-test$(EXESUF): tests/ac97-test.o
78446e7b706SFam Zhengtests/es1370-test$(EXESUF): tests/es1370-test.o
78546e7b706SFam Zhengtests/intel-hda-test$(EXESUF): tests/intel-hda-test.o
78646e7b706SFam Zhengtests/ioh3420-test$(EXESUF): tests/ioh3420-test.o
78746e7b706SFam Zhengtests/usb-hcd-ohci-test$(EXESUF): tests/usb-hcd-ohci-test.o $(libqos-usb-obj-y)
78846e7b706SFam Zhengtests/usb-hcd-uhci-test$(EXESUF): tests/usb-hcd-uhci-test.o $(libqos-usb-obj-y)
78946e7b706SFam Zhengtests/usb-hcd-ehci-test$(EXESUF): tests/usb-hcd-ehci-test.o $(libqos-usb-obj-y)
79046e7b706SFam Zhengtests/usb-hcd-xhci-test$(EXESUF): tests/usb-hcd-xhci-test.o $(libqos-usb-obj-y)
79146e7b706SFam Zhengtests/pc-cpu-test$(EXESUF): tests/pc-cpu-test.o
7922656bfd9SJuan Quintelatests/migration-test$(EXESUF): tests/migration-test.o
793c2b38b27SPaolo Bonzinitests/vhost-user-test$(EXESUF): tests/vhost-user-test.o $(test-util-obj-y) \
79432d955a4SMarc-André Lureau	$(qtest-obj-y) $(test-io-obj-y) $(libqos-virtio-obj-y) $(libqos-pc-obj-y) \
79532d955a4SMarc-André Lureau	$(chardev-obj-y)
79646e7b706SFam Zhengtests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
79746e7b706SFam Zhengtests/test-qemu-opts$(EXESUF): tests/test-qemu-opts.o $(test-util-obj-y)
798599c156bSMarkus Armbrustertests/test-keyval$(EXESUF): tests/test-keyval.o $(test-util-obj-y) $(test-qapi-obj-y)
79946e7b706SFam Zhengtests/test-write-threshold$(EXESUF): tests/test-write-threshold.o $(test-block-obj-y)
80046e7b706SFam Zhengtests/test-netfilter$(EXESUF): tests/test-netfilter.o $(qtest-obj-y)
80146e7b706SFam Zhengtests/test-filter-mirror$(EXESUF): tests/test-filter-mirror.o $(qtest-obj-y)
80246e7b706SFam Zhengtests/test-filter-redirector$(EXESUF): tests/test-filter-redirector.o $(qtest-obj-y)
8036efef58eSEduardo Habkosttests/test-x86-cpuid-compat$(EXESUF): tests/test-x86-cpuid-compat.o $(qtest-obj-y)
8042bf25e07SLaurent Viviertests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
805660174fcSPaolo Bonzinitests/megasas-test$(EXESUF): tests/megasas-test.o $(libqos-spapr-obj-y) $(libqos-pc-obj-y)
806de97cdedSMarc-André Lureautests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o $(test-util-obj-y) libvhost-user.a
807c739cdddSFam Zhengtests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y)
808882fac37SDmitry Osipenkotests/test-arm-mptimer$(EXESUF): tests/test-arm-mptimer.o
8096c873d11SMarkus Armbrustertests/test-qapi-util$(EXESUF): tests/test-qapi-util.o $(test-util-obj-y)
81063baf8bfSIgor Mammedovtests/numa-test$(EXESUF): tests/numa-test.o
8114871b51bSMichael S. Tsirkintests/vmgenid-test$(EXESUF): tests/vmgenid-test.o tests/boot-sector.o tests/acpi-utils.o
81246e7b706SFam Zheng
813409437e1SDaniel P. Berrangetests/migration/stress$(EXESUF): tests/migration/stress.o
8140bdb12c7SPeter Maydell	$(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@")
815409437e1SDaniel P. Berrange
816409437e1SDaniel P. BerrangeINITRD_WORK_DIR=tests/migration/initrd
817409437e1SDaniel P. Berrange
818409437e1SDaniel P. Berrangetests/migration/initrd-stress.img: tests/migration/stress$(EXESUF)
819409437e1SDaniel P. Berrange	mkdir -p $(INITRD_WORK_DIR)
820409437e1SDaniel P. Berrange	cp $< $(INITRD_WORK_DIR)/init
821409437e1SDaniel P. Berrange	(cd $(INITRD_WORK_DIR) && (find | cpio --quiet -o -H newc | gzip -9)) > $@
822409437e1SDaniel P. Berrange	rm $(INITRD_WORK_DIR)/init
823409437e1SDaniel P. Berrange	rmdir $(INITRD_WORK_DIR)
824409437e1SDaniel P. Berrange
82546e7b706SFam Zhengifeq ($(CONFIG_POSIX),y)
82646e7b706SFam ZhengLIBS += -lutil
82746e7b706SFam Zhengendif
82846e7b706SFam Zheng
82946e7b706SFam Zheng# QTest rules
83046e7b706SFam Zheng
83146e7b706SFam ZhengTARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS)))
83246e7b706SFam Zhengifeq ($(CONFIG_POSIX),y)
83346e7b706SFam ZhengQTEST_TARGETS = $(TARGETS)
83446e7b706SFam Zhengcheck-qtest-y=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))
83546e7b706SFam Zhengcheck-qtest-y += $(check-qtest-generic-y)
83646e7b706SFam Zhengelse
83746e7b706SFam ZhengQTEST_TARGETS =
83846e7b706SFam Zhengendif
83946e7b706SFam Zheng
84046e7b706SFam Zhengqtest-obj-y = tests/libqtest.o $(test-util-obj-y)
84146e7b706SFam Zheng$(check-qtest-y): $(qtest-obj-y)
84246e7b706SFam Zheng
8434be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): qemu-ga$(EXESUF)
8444be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): tests/test-qga.o $(qtest-obj-y)
84546e7b706SFam Zheng
84646e7b706SFam ZhengSPEED = quick
84746e7b706SFam ZhengGTESTER_OPTIONS = -k $(if $(V),--verbose,-q)
84846e7b706SFam ZhengGCOV_OPTIONS = -n $(if $(V),-f,)
84946e7b706SFam Zheng
85046e7b706SFam Zheng# gtester tests, possibly with verbose output
85146e7b706SFam Zheng
85246e7b706SFam Zheng.PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS))
853b94b330eSPhilippe Mathieu-Daudé$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: subdir-%-softmmu $(check-qtest-y)
85446e7b706SFam Zheng	$(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,)
85546e7b706SFam Zheng	$(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
85646e7b706SFam Zheng		QTEST_QEMU_IMG=qemu-img$(EXESUF) \
85764f871e3SPeter Maydell		MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \
8580bdb12c7SPeter Maydell		gtester $(GTESTER_OPTIONS) -m=$(SPEED) $(check-qtest-$*-y) $(check-qtest-generic-y),"GTESTER","$@")
85946e7b706SFam Zheng	$(if $(CONFIG_GCOV),@for f in $(gcov-files-$*-y) $(gcov-files-generic-y); do \
86046e7b706SFam Zheng	  echo Gcov report for $$f:;\
86146e7b706SFam Zheng	  $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \
86246e7b706SFam Zheng	done,)
86346e7b706SFam Zheng
8641efd9d5eSLongpeng(Mike).PHONY: $(patsubst %, check-%, $(check-unit-y) $(check-speed-y))
8651efd9d5eSLongpeng(Mike)$(patsubst %, check-%, $(check-unit-y) $(check-speed-y)): check-%: %
86646e7b706SFam Zheng	$(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,)
86746e7b706SFam Zheng	$(call quiet-command, \
86864f871e3SPeter Maydell		MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \
8690bdb12c7SPeter Maydell		gtester $(GTESTER_OPTIONS) -m=$(SPEED) $*,"GTESTER","$*")
87046e7b706SFam Zheng	$(if $(CONFIG_GCOV),@for f in $(gcov-files-$(subst tests/,,$*)-y) $(gcov-files-generic-y); do \
87146e7b706SFam Zheng	  echo Gcov report for $$f:;\
87246e7b706SFam Zheng	  $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \
87346e7b706SFam Zheng	done,)
87446e7b706SFam Zheng
87546e7b706SFam Zheng# gtester tests with XML output
87646e7b706SFam Zheng
87746e7b706SFam Zheng$(patsubst %, check-report-qtest-%.xml, $(QTEST_TARGETS)): check-report-qtest-%.xml: $(check-qtest-y)
87846e7b706SFam Zheng	$(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
87946e7b706SFam Zheng		QTEST_QEMU_IMG=qemu-img$(EXESUF) \
8800bdb12c7SPeter Maydell	  gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $(check-qtest-$*-y) $(check-qtest-generic-y),"GTESTER","$@")
88146e7b706SFam Zheng
88246e7b706SFam Zhengcheck-report-unit.xml: $(check-unit-y)
8830bdb12c7SPeter Maydell	$(call quiet-command,gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $^,"GTESTER","$@")
88446e7b706SFam Zheng
88546e7b706SFam Zheng# Reports and overall runs
88646e7b706SFam Zheng
88746e7b706SFam Zhengcheck-report.xml: $(patsubst %,check-report-qtest-%.xml, $(QTEST_TARGETS)) check-report-unit.xml
8880bdb12c7SPeter Maydell	$(call quiet-command,$(SRC_PATH)/scripts/gtester-cat $^ > $@,"GEN","$@")
88946e7b706SFam Zheng
89046e7b706SFam Zhengcheck-report.html: check-report.xml
8910bdb12c7SPeter Maydell	$(call quiet-command,gtester-report $< > $@,"GEN","$@")
89246e7b706SFam Zheng
89346e7b706SFam Zheng
89446e7b706SFam Zheng# Other tests
89546e7b706SFam Zheng
89646e7b706SFam ZhengQEMU_IOTESTS_HELPERS-$(CONFIG_LINUX) = tests/qemu-iotests/socket_scm_helper$(EXESUF)
89746e7b706SFam Zheng
89846e7b706SFam Zheng.PHONY: check-tests/qemu-iotests-quick.sh
89946e7b706SFam Zhengcheck-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF) $(QEMU_IOTESTS_HELPERS-y)
90046e7b706SFam Zheng	$<
90146e7b706SFam Zheng
90246e7b706SFam Zheng.PHONY: $(patsubst %, check-%, $(check-qapi-schema-y))
90346e7b706SFam Zheng$(patsubst %, check-%, $(check-qapi-schema-y)): check-%.json: $(SRC_PATH)/%.json
90446e7b706SFam Zheng	$(call quiet-command, PYTHONPATH=$(SRC_PATH)/scripts \
90546e7b706SFam Zheng		$(PYTHON) $(SRC_PATH)/tests/qapi-schema/test-qapi.py \
90646e7b706SFam Zheng		$^ >$*.test.out 2>$*.test.err; \
90746e7b706SFam Zheng		echo $$? >$*.test.exit, \
9080bdb12c7SPeter Maydell		"TEST","$*.out")
90946e7b706SFam Zheng	@diff -q $(SRC_PATH)/$*.out $*.test.out
91046e7b706SFam Zheng	@# Sanitize error messages (make them independent of build directory)
91146e7b706SFam Zheng	@perl -p -e 's|\Q$(SRC_PATH)\E/||g' $*.test.err | diff -q $(SRC_PATH)/$*.err -
91246e7b706SFam Zheng	@diff -q $(SRC_PATH)/$*.exit $*.test.exit
91346e7b706SFam Zheng
91480d1f2e4SMarkus Armbruster.PHONY: check-tests/qapi-schema/doc-good.texi
91580d1f2e4SMarkus Armbrustercheck-tests/qapi-schema/doc-good.texi: tests/qapi-schema/doc-good.test.texi
91680d1f2e4SMarkus Armbruster	@diff -q $(SRC_PATH)/tests/qapi-schema/doc-good.texi $<
91780d1f2e4SMarkus Armbruster
91846e7b706SFam Zheng# Consolidated targets
91946e7b706SFam Zheng
92046e7b706SFam Zheng.PHONY: check-qapi-schema check-qtest check-unit check check-clean
92180d1f2e4SMarkus Armbrustercheck-qapi-schema: $(patsubst %,check-%, $(check-qapi-schema-y)) check-tests/qapi-schema/doc-good.texi
92246e7b706SFam Zhengcheck-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS))
92346e7b706SFam Zhengcheck-unit: $(patsubst %,check-%, $(check-unit-y))
9241efd9d5eSLongpeng(Mike)check-speed: $(patsubst %,check-%, $(check-speed-y))
92546e7b706SFam Zhengcheck-block: $(patsubst %,check-%, $(check-block-y))
92646e7b706SFam Zhengcheck: check-qapi-schema check-unit check-qtest
92746e7b706SFam Zhengcheck-clean:
92846e7b706SFam Zheng	$(MAKE) -C tests/tcg clean
92946e7b706SFam Zheng	rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
93046e7b706SFam Zheng	rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST), $(check-qtest-$(target)-y)) $(check-qtest-generic-y))
93146e7b706SFam Zheng
93246e7b706SFam Zhengclean: check-clean
93346e7b706SFam Zheng
93446e7b706SFam Zheng# Build the help program automatically
93546e7b706SFam Zheng
93646e7b706SFam Zhengall: $(QEMU_IOTESTS_HELPERS-y)
93746e7b706SFam Zheng
93846e7b706SFam Zheng-include $(wildcard tests/*.d)
93946e7b706SFam Zheng-include $(wildcard tests/libqos/*.d)
940e45eaef9SFam Zheng
941e45eaef9SFam Zhengendif
942