xref: /qemu/tests/Makefile.include (revision 152e0393)
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
83881cfd17SKevin 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
281*152e0393SThomas Huthcheck-qtest-i386-y += tests/cpu-plug-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
303acf53766SThomas Huthcheck-qtest-microblaze-y = tests/boot-serial-test$(EXESUF)
304acf53766SThomas Huth
30546e7b706SFam Zhengcheck-qtest-mips-y = tests/endianness-test$(EXESUF)
30629531542SThomas Huth
30746e7b706SFam Zhengcheck-qtest-mips64-y = tests/endianness-test$(EXESUF)
30829531542SThomas Huth
30946e7b706SFam Zhengcheck-qtest-mips64el-y = tests/endianness-test$(EXESUF)
31029531542SThomas Huth
3117244edf2SThomas Huthcheck-qtest-moxie-y = tests/boot-serial-test$(EXESUF)
3127244edf2SThomas Huth
31346e7b706SFam Zhengcheck-qtest-ppc-y = tests/endianness-test$(EXESUF)
31429531542SThomas Huthcheck-qtest-ppc-y += tests/boot-order-test$(EXESUF)
31529531542SThomas Huthcheck-qtest-ppc-y += tests/prom-env-test$(EXESUF)
31629531542SThomas Huthcheck-qtest-ppc-y += tests/drive_del-test$(EXESUF)
317d2ab58ffSThomas Huthcheck-qtest-ppc-y += tests/boot-serial-test$(EXESUF)
31829531542SThomas Huth
31929531542SThomas Huthcheck-qtest-ppc64-y = tests/spapr-phb-test$(EXESUF)
32029531542SThomas Huthgcov-files-ppc64-y = ppc64-softmmu/hw/ppc/spapr_pci.c
32129531542SThomas Huthcheck-qtest-ppc64-y += tests/endianness-test$(EXESUF)
32229531542SThomas Huthcheck-qtest-ppc64-y += tests/boot-order-test$(EXESUF)
32329531542SThomas Huthcheck-qtest-ppc64-y += tests/prom-env-test$(EXESUF)
324ca8e4bf4SDavid Gibsoncheck-qtest-ppc64-y += tests/pnv-xscom-test$(EXESUF)
32529531542SThomas Huthcheck-qtest-ppc64-y += tests/drive_del-test$(EXESUF)
3262656bfd9SJuan Quintelacheck-qtest-ppc64-y += tests/migration-test$(EXESUF)
327d2ab58ffSThomas Huthcheck-qtest-ppc64-y += tests/boot-serial-test$(EXESUF)
328eeddd59fSLaurent Viviercheck-qtest-ppc64-y += tests/rtas-test$(EXESUF)
329d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
330aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-ohci-test$(EXESUF)
331aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-ohci.c
332aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-uhci-test$(EXESUF)
333aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-uhci.c
334aa9026fdSLaurent Viviercheck-qtest-ppc64-y += tests/usb-hcd-xhci-test$(EXESUF)
335aa9026fdSLaurent Viviergcov-files-ppc64-y += hw/usb/hcd-xhci.c
33630ca440eSLaurent Viviercheck-qtest-ppc64-y += $(check-qtest-virtio-y)
337d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
3387f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
3397f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
340f38a0b2fSLaurent Viviercheck-qtest-ppc64-y += tests/display-vga-test$(EXESUF)
34163baf8bfSIgor Mammedovcheck-qtest-ppc64-y += tests/numa-test$(EXESUF)
342e0580342SKamil Rytarowskicheck-qtest-ppc64-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF)
34329531542SThomas Huth
34446e7b706SFam Zhengcheck-qtest-sh4-y = tests/endianness-test$(EXESUF)
34529531542SThomas Huth
34646e7b706SFam Zhengcheck-qtest-sh4eb-y = tests/endianness-test$(EXESUF)
34729531542SThomas Huth
34829531542SThomas Huthcheck-qtest-sparc-y = tests/prom-env-test$(EXESUF)
34929531542SThomas Huth#check-qtest-sparc-y += tests/m48t59-test$(EXESUF)
35029531542SThomas Huth#gcov-files-sparc-y = hw/timer/m48t59.c
35129531542SThomas Huth
35246e7b706SFam Zhengcheck-qtest-sparc64-y = tests/endianness-test$(EXESUF)
35346e7b706SFam Zheng#check-qtest-sparc64-y += tests/m48t59-test$(EXESUF)
35429531542SThomas Huth#gcov-files-sparc64-y += hw/timer/m48t59.c
3556b591ad6SThomas Huthcheck-qtest-sparc64-y += tests/prom-env-test$(EXESUF)
35629531542SThomas Huth
35746e7b706SFam Zhengcheck-qtest-arm-y = tests/tmp105-test$(EXESUF)
3581f5c1cfbSThomas Huthcheck-qtest-arm-y += tests/ds1338-test$(EXESUF)
3597a2334f7SCédric Le Goatercheck-qtest-arm-y += tests/m25p80-test$(EXESUF)
36046e7b706SFam Zhenggcov-files-arm-y += hw/misc/tmp105.c
36146e7b706SFam Zhengcheck-qtest-arm-y += tests/virtio-blk-test$(EXESUF)
36246e7b706SFam Zhenggcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c
363882fac37SDmitry Osipenkocheck-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
364882fac37SDmitry Osipenkogcov-files-arm-y += hw/timer/arm_mptimer.c
36552cb6817SThomas Huthcheck-qtest-arm-y += tests/boot-serial-test$(EXESUF)
36629531542SThomas Huth
36763baf8bfSIgor Mammedovcheck-qtest-aarch64-y = tests/numa-test$(EXESUF)
36863baf8bfSIgor Mammedov
36946e7b706SFam Zhengcheck-qtest-microblazeel-y = $(check-qtest-microblaze-y)
37029531542SThomas Huth
37146e7b706SFam Zhengcheck-qtest-xtensaeb-y = $(check-qtest-xtensa-y)
37246e7b706SFam Zheng
373d2ab58ffSThomas Huthcheck-qtest-s390x-y = tests/boot-serial-test$(EXESUF)
374b1b2feacSThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
375ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
376ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
377ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
3782f84a92eSThomas Huthcheck-qtest-s390x-y += tests/drive_del-test$(EXESUF)
379d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-balloon-test$(EXESUF)
380d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-console-test$(EXESUF)
381d0a5cc5bSThomas Huthcheck-qtest-s390x-y += tests/virtio-serial-test$(EXESUF)
382d2ab58ffSThomas Huth
38346e7b706SFam Zhengcheck-qtest-generic-y += tests/qom-test$(EXESUF)
38478f86a2bSThomas Huthcheck-qtest-generic-y += tests/test-hmp$(EXESUF)
38546e7b706SFam Zheng
38646e7b706SFam Zhengqapi-schema += alternate-any.json
38746e7b706SFam Zhengqapi-schema += alternate-array.json
38846e7b706SFam Zhengqapi-schema += alternate-base.json
38946e7b706SFam Zhengqapi-schema += alternate-clash.json
39046e7b706SFam Zhengqapi-schema += alternate-conflict-dict.json
391c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-bool.json
392c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-int.json
39346e7b706SFam Zhengqapi-schema += alternate-conflict-string.json
394fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-bool-string.json
395fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-num-string.json
39646e7b706SFam Zhengqapi-schema += alternate-empty.json
39746e7b706SFam Zhengqapi-schema += alternate-nested.json
39846e7b706SFam Zhengqapi-schema += alternate-unknown.json
39946e7b706SFam Zhengqapi-schema += args-alternate.json
40046e7b706SFam Zhengqapi-schema += args-any.json
40146e7b706SFam Zhengqapi-schema += args-array-empty.json
40246e7b706SFam Zhengqapi-schema += args-array-unknown.json
403c818408eSEric Blakeqapi-schema += args-bad-boxed.json
404c818408eSEric Blakeqapi-schema += args-boxed-anon.json
405c818408eSEric Blakeqapi-schema += args-boxed-empty.json
406c818408eSEric Blakeqapi-schema += args-boxed-string.json
40746e7b706SFam Zhengqapi-schema += args-int.json
40846e7b706SFam Zhengqapi-schema += args-invalid.json
40946e7b706SFam Zhengqapi-schema += args-member-array-bad.json
41046e7b706SFam Zhengqapi-schema += args-member-case.json
41146e7b706SFam Zhengqapi-schema += args-member-unknown.json
41246e7b706SFam Zhengqapi-schema += args-name-clash.json
41346e7b706SFam Zhengqapi-schema += args-union.json
41446e7b706SFam Zhengqapi-schema += args-unknown.json
41546e7b706SFam Zhengqapi-schema += bad-base.json
41646e7b706SFam Zhengqapi-schema += bad-data.json
41746e7b706SFam Zhengqapi-schema += bad-ident.json
41846e7b706SFam Zhengqapi-schema += bad-type-bool.json
41946e7b706SFam Zhengqapi-schema += bad-type-dict.json
42046e7b706SFam Zhengqapi-schema += bad-type-int.json
42146e7b706SFam Zhengqapi-schema += base-cycle-direct.json
42246e7b706SFam Zhengqapi-schema += base-cycle-indirect.json
42346e7b706SFam Zhengqapi-schema += command-int.json
42446e7b706SFam Zhengqapi-schema += comments.json
425f641d06aSMarkus Armbrusterqapi-schema += doc-bad-alternate-member.json
426bdc001caSMarkus Armbrusterqapi-schema += doc-bad-command-arg.json
427cfa438ffSMarkus Armbrusterqapi-schema += doc-bad-section.json
4283313b612SMarc-André Lureauqapi-schema += doc-bad-symbol.json
429f641d06aSMarkus Armbrusterqapi-schema += doc-bad-union-member.json
4302028be8eSMarkus Armbrusterqapi-schema += doc-before-include.json
4312028be8eSMarkus Armbrusterqapi-schema += doc-before-pragma.json
4323313b612SMarc-André Lureauqapi-schema += doc-duplicated-arg.json
4333313b612SMarc-André Lureauqapi-schema += doc-duplicated-return.json
4343313b612SMarc-André Lureauqapi-schema += doc-duplicated-since.json
4353313b612SMarc-André Lureauqapi-schema += doc-empty-arg.json
4363313b612SMarc-André Lureauqapi-schema += doc-empty-section.json
4373313b612SMarc-André Lureauqapi-schema += doc-empty-symbol.json
43880d1f2e4SMarkus Armbrusterqapi-schema += doc-good.json
4393313b612SMarc-André Lureauqapi-schema += doc-interleaved-section.json
4403313b612SMarc-André Lureauqapi-schema += doc-invalid-end.json
4413313b612SMarc-André Lureauqapi-schema += doc-invalid-end2.json
4423313b612SMarc-André Lureauqapi-schema += doc-invalid-return.json
4433313b612SMarc-André Lureauqapi-schema += doc-invalid-section.json
4443313b612SMarc-André Lureauqapi-schema += doc-invalid-start.json
4453313b612SMarc-André Lureauqapi-schema += doc-missing-colon.json
4463313b612SMarc-André Lureauqapi-schema += doc-missing-expr.json
4473313b612SMarc-André Lureauqapi-schema += doc-missing-space.json
448cfa438ffSMarkus Armbrusterqapi-schema += doc-missing.json
4492028be8eSMarkus Armbrusterqapi-schema += doc-no-symbol.json
45046e7b706SFam Zhengqapi-schema += double-data.json
45146e7b706SFam Zhengqapi-schema += double-type.json
45246e7b706SFam Zhengqapi-schema += duplicate-key.json
45346e7b706SFam Zhengqapi-schema += empty.json
45446e7b706SFam Zhengqapi-schema += enum-bad-name.json
45546e7b706SFam Zhengqapi-schema += enum-bad-prefix.json
45646e7b706SFam Zhengqapi-schema += enum-clash-member.json
45746e7b706SFam Zhengqapi-schema += enum-dict-member.json
45846e7b706SFam Zhengqapi-schema += enum-int-member.json
45946e7b706SFam Zhengqapi-schema += enum-member-case.json
46046e7b706SFam Zhengqapi-schema += enum-missing-data.json
46146e7b706SFam Zhengqapi-schema += enum-wrong-data.json
46246e7b706SFam Zhengqapi-schema += escape-outside-string.json
46346e7b706SFam Zhengqapi-schema += escape-too-big.json
46446e7b706SFam Zhengqapi-schema += escape-too-short.json
465c818408eSEric Blakeqapi-schema += event-boxed-empty.json
46646e7b706SFam Zhengqapi-schema += event-case.json
46746e7b706SFam Zhengqapi-schema += event-nest-struct.json
46846e7b706SFam Zhengqapi-schema += flat-union-array-branch.json
46946e7b706SFam Zhengqapi-schema += flat-union-bad-base.json
47046e7b706SFam Zhengqapi-schema += flat-union-bad-discriminator.json
47146e7b706SFam Zhengqapi-schema += flat-union-base-any.json
47246e7b706SFam Zhengqapi-schema += flat-union-base-union.json
47346e7b706SFam Zhengqapi-schema += flat-union-clash-member.json
47446e7b706SFam Zhengqapi-schema += flat-union-empty.json
475d0b18239SEric Blakeqapi-schema += flat-union-incomplete-branch.json
47646e7b706SFam Zhengqapi-schema += flat-union-inline.json
47746e7b706SFam Zhengqapi-schema += flat-union-int-branch.json
47846e7b706SFam Zhengqapi-schema += flat-union-invalid-branch-key.json
47946e7b706SFam Zhengqapi-schema += flat-union-invalid-discriminator.json
48046e7b706SFam Zhengqapi-schema += flat-union-no-base.json
48146e7b706SFam Zhengqapi-schema += flat-union-optional-discriminator.json
48246e7b706SFam Zhengqapi-schema += flat-union-string-discriminator.json
48346e7b706SFam Zhengqapi-schema += funny-char.json
48446e7b706SFam Zhengqapi-schema += ident-with-escape.json
48546e7b706SFam Zhengqapi-schema += include-before-err.json
48646e7b706SFam Zhengqapi-schema += include-cycle.json
487bc52d03fSMarkus Armbrusterqapi-schema += include-extra-junk.json
48846e7b706SFam Zhengqapi-schema += include-format-err.json
48946e7b706SFam Zhengqapi-schema += include-nested-err.json
49046e7b706SFam Zhengqapi-schema += include-no-file.json
49146e7b706SFam Zhengqapi-schema += include-non-file.json
49246e7b706SFam Zhengqapi-schema += include-relpath.json
49346e7b706SFam Zhengqapi-schema += include-repetition.json
49446e7b706SFam Zhengqapi-schema += include-self-cycle.json
49546e7b706SFam Zhengqapi-schema += include-simple.json
49646e7b706SFam Zhengqapi-schema += indented-expr.json
49746e7b706SFam Zhengqapi-schema += leading-comma-list.json
49846e7b706SFam Zhengqapi-schema += leading-comma-object.json
49946e7b706SFam Zhengqapi-schema += missing-colon.json
50046e7b706SFam Zhengqapi-schema += missing-comma-list.json
50146e7b706SFam Zhengqapi-schema += missing-comma-object.json
50246e7b706SFam Zhengqapi-schema += missing-type.json
50346e7b706SFam Zhengqapi-schema += nested-struct-data.json
50446e7b706SFam Zhengqapi-schema += non-objects.json
505bc52d03fSMarkus Armbrusterqapi-schema += pragma-doc-required-crap.json
506bc52d03fSMarkus Armbrusterqapi-schema += pragma-extra-junk.json
5072cfbae3cSMarkus Armbrusterqapi-schema += pragma-name-case-whitelist-crap.json
508bc52d03fSMarkus Armbrusterqapi-schema += pragma-non-dict.json
5091554a8faSMarkus Armbrusterqapi-schema += pragma-returns-whitelist-crap.json
51046e7b706SFam Zhengqapi-schema += qapi-schema-test.json
51146e7b706SFam Zhengqapi-schema += quoted-structural-chars.json
51246e7b706SFam Zhengqapi-schema += redefined-builtin.json
51346e7b706SFam Zhengqapi-schema += redefined-command.json
51446e7b706SFam Zhengqapi-schema += redefined-event.json
51546e7b706SFam Zhengqapi-schema += redefined-type.json
51646e7b706SFam Zhengqapi-schema += reserved-command-q.json
51746e7b706SFam Zhengqapi-schema += reserved-enum-q.json
51846e7b706SFam Zhengqapi-schema += reserved-member-has.json
51946e7b706SFam Zhengqapi-schema += reserved-member-q.json
52046e7b706SFam Zhengqapi-schema += reserved-member-u.json
52146e7b706SFam Zhengqapi-schema += reserved-member-underscore.json
52246e7b706SFam Zhengqapi-schema += reserved-type-kind.json
52346e7b706SFam Zhengqapi-schema += reserved-type-list.json
52446e7b706SFam Zhengqapi-schema += returns-alternate.json
52546e7b706SFam Zhengqapi-schema += returns-array-bad.json
52646e7b706SFam Zhengqapi-schema += returns-dict.json
52746e7b706SFam Zhengqapi-schema += returns-unknown.json
52846e7b706SFam Zhengqapi-schema += returns-whitelist.json
52946e7b706SFam Zhengqapi-schema += struct-base-clash-deep.json
53046e7b706SFam Zhengqapi-schema += struct-base-clash.json
53146e7b706SFam Zhengqapi-schema += struct-data-invalid.json
53246e7b706SFam Zhengqapi-schema += struct-member-invalid.json
53346e7b706SFam Zhengqapi-schema += trailing-comma-list.json
53446e7b706SFam Zhengqapi-schema += trailing-comma-object.json
53546e7b706SFam Zhengqapi-schema += type-bypass-bad-gen.json
53646e7b706SFam Zhengqapi-schema += unclosed-list.json
53746e7b706SFam Zhengqapi-schema += unclosed-object.json
53846e7b706SFam Zhengqapi-schema += unclosed-string.json
53946e7b706SFam Zhengqapi-schema += unicode-str.json
540707fb2d3SMarkus Armbrusterqapi-schema += union-base-empty.json
54146e7b706SFam Zhengqapi-schema += union-base-no-discriminator.json
54246e7b706SFam Zhengqapi-schema += union-branch-case.json
54346e7b706SFam Zhengqapi-schema += union-clash-branches.json
54446e7b706SFam Zhengqapi-schema += union-empty.json
54546e7b706SFam Zhengqapi-schema += union-invalid-base.json
54646e7b706SFam Zhengqapi-schema += union-optional-branch.json
54746e7b706SFam Zhengqapi-schema += union-unknown.json
54846e7b706SFam Zhengqapi-schema += unknown-escape.json
54946e7b706SFam Zhengqapi-schema += unknown-expr-key.json
5503313b612SMarc-André Lureau
5513313b612SMarc-André Lureau
55246e7b706SFam Zhengcheck-qapi-schema-y := $(addprefix tests/qapi-schema/, $(qapi-schema))
55346e7b706SFam Zheng
5544f04f13cSDaniel P. BerrangeGENERATED_FILES += tests/test-qapi-types.h tests/test-qapi-visit.h \
55546e7b706SFam Zheng	tests/test-qmp-commands.h tests/test-qapi-event.h \
55646e7b706SFam Zheng	tests/test-qmp-introspect.h
55746e7b706SFam Zheng
55801b2ffceSMarc-André Lureautest-obj-y = tests/check-qnum.o tests/check-qstring.o tests/check-qdict.o \
5591b76e838SMax Reitz	tests/check-qlist.o tests/check-qnull.o tests/check-qobject.o \
560382176b4SMarc-André Lureau	tests/check-qjson.o tests/check-qlit.o \
56146e7b706SFam Zheng	tests/test-coroutine.o tests/test-string-output-visitor.o \
562b3db211fSDaniel P. Berrange	tests/test-string-input-visitor.o tests/test-qobject-output-visitor.o \
563a15fcc3cSEric Blake	tests/test-clone-visitor.o \
56477c47de2SMarkus Armbruster	tests/test-qobject-input-visitor.o \
56546e7b706SFam Zheng	tests/test-qmp-commands.o tests/test-visitor-serialization.o \
56646e7b706SFam Zheng	tests/test-x86-cpuid.o tests/test-mul64.o tests/test-int128.o \
56746e7b706SFam Zheng	tests/test-opts-visitor.o tests/test-qmp-event.o \
568ff9249b7SEmilio G. Cota	tests/rcutorture.o tests/test-rcu-list.o \
569f539fbe3SJose Ricardo Ziviani	tests/test-qdist.o tests/test-shift128.o \
570070e3edcSEmilio G. Cota	tests/test-qht.o tests/qht-bench.o tests/test-qht-par.o \
571070e3edcSEmilio G. Cota	tests/atomic_add-bench.o
57246e7b706SFam Zheng
57346e7b706SFam Zheng$(test-obj-y): QEMU_INCLUDES += -Itests
57446e7b706SFam ZhengQEMU_CFLAGS += -I$(SRC_PATH)/tests
57546e7b706SFam Zheng
57646e7b706SFam Zheng
57746e7b706SFam Zheng# Deps that are common to various different sets of tests below
578ebedb37cSPaolo Bonzinitest-util-obj-y = libqemuutil.a
57946e7b706SFam Zhengtest-qom-obj-y = $(qom-obj-y) $(test-util-obj-y)
58046e7b706SFam Zhengtest-qapi-obj-y = tests/test-qapi-visit.o tests/test-qapi-types.o \
58146e7b706SFam Zheng	tests/test-qapi-event.o tests/test-qmp-introspect.o \
58246e7b706SFam Zheng	$(test-qom-obj-y)
5831efd9d5eSLongpeng(Mike)benchmark-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y)
58446e7b706SFam Zhengtest-crypto-obj-y = $(crypto-obj-y) $(test-qom-obj-y)
58546e7b706SFam Zhengtest-io-obj-y = $(io-obj-y) $(test-crypto-obj-y)
5860c330a73SPaolo Bonzinitest-block-obj-y = $(block-obj-y) $(test-io-obj-y) tests/iothread.o
58746e7b706SFam Zheng
58801b2ffceSMarc-André Lureautests/check-qnum$(EXESUF): tests/check-qnum.o $(test-util-obj-y)
58946e7b706SFam Zhengtests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y)
59046e7b706SFam Zhengtests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y)
59146e7b706SFam Zhengtests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y)
59246e7b706SFam Zhengtests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y)
5931b76e838SMax Reitztests/check-qobject$(EXESUF): tests/check-qobject.o $(test-util-obj-y)
59446e7b706SFam Zhengtests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y)
595382176b4SMarc-André Lureautests/check-qlit$(EXESUF): tests/check-qlit.o $(test-util-obj-y)
59646e7b706SFam Zhengtests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y)
59746e7b706SFam Zhengtests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y)
598ea3af47dSMarc-André Lureau
599c2b38b27SPaolo Bonzinitests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y)
60046e7b706SFam Zhengtests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y)
60146e7b706SFam Zhengtests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y)
6020c330a73SPaolo Bonzinitests/test-aio-multithread$(EXESUF): tests/test-aio-multithread.o $(test-block-obj-y)
60346e7b706SFam Zhengtests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y)
604881cfd17SKevin Wolftests/test-bdrv-drain$(EXESUF): tests/test-bdrv-drain.o $(test-block-obj-y) $(test-util-obj-y)
6059ef8112aSAlberto Garciatests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y)
60646e7b706SFam Zhengtests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y)
60746e7b706SFam Zhengtests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y)
60846e7b706SFam Zhengtests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
609a3b52535SVladimir Sementsov-Ogievskiytests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y)
61046e7b706SFam Zhengtests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
611aa3544c3SJuan Quintelatests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y)
61205cb8ed5SAlistair Francistests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o $(test-util-obj-y)
61346e7b706SFam Zhengtests/test-int128$(EXESUF): tests/test-int128.o
61446e7b706SFam Zhengtests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
61546e7b706SFam Zhengtests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
616ff9249b7SEmilio G. Cotatests/test-qdist$(EXESUF): tests/test-qdist.o $(test-util-obj-y)
6171a95404fSEmilio G. Cotatests/test-qht$(EXESUF): tests/test-qht.o $(test-util-obj-y)
618896a9ee9SEmilio G. Cotatests/test-qht-par$(EXESUF): tests/test-qht-par.o tests/qht-bench$(EXESUF) $(test-util-obj-y)
619515864a0SEmilio G. Cotatests/qht-bench$(EXESUF): tests/qht-bench.o $(test-util-obj-y)
620efad6682SRichard Hendersontests/test-bufferiszero$(EXESUF): tests/test-bufferiszero.o $(test-util-obj-y)
621070e3edcSEmilio G. Cotatests/atomic_add-bench$(EXESUF): tests/atomic_add-bench.o $(test-util-obj-y)
62246e7b706SFam Zheng
62346e7b706SFam Zhengtests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \
62446e7b706SFam Zheng	hw/core/qdev.o hw/core/qdev-properties.o hw/core/hotplug.o\
62546e7b706SFam Zheng	hw/core/bus.o \
62646e7b706SFam Zheng	hw/core/irq.o \
62746e7b706SFam Zheng	hw/core/fw-path-provider.o \
6282f7b92a0SPaolo Bonzini	hw/core/reset.o \
62946e7b706SFam Zheng	$(test-qapi-obj-y)
63046e7b706SFam Zhengtests/test-vmstate$(EXESUF): tests/test-vmstate.o \
631576d1abcSJuan Quintela	migration/vmstate.o migration/vmstate-types.o migration/qemu-file.o \
63246e7b706SFam Zheng        migration/qemu-file-channel.o migration/qjson.o \
63346e7b706SFam Zheng	$(test-io-obj-y)
634c2b38b27SPaolo Bonzinitests/test-timed-average$(EXESUF): tests/test-timed-average.o $(test-util-obj-y)
635ebedb37cSPaolo Bonzinitests/test-base64$(EXESUF): tests/test-base64.o $(test-util-obj-y)
6369ee24e98SPaolo Bonzinitests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o
63746e7b706SFam Zheng
63846e7b706SFam Zhengtests/test-logging$(EXESUF): tests/test-logging.o $(test-util-obj-y)
63946e7b706SFam Zheng
640b3110466SChanglong Xietests/test-replication$(EXESUF): tests/test-replication.o $(test-util-obj-y) \
641b3110466SChanglong Xie	$(test-block-obj-y)
642b3110466SChanglong Xie
64346e7b706SFam Zhengtests/test-qapi-types.c tests/test-qapi-types.h :\
64446e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
64546e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
64646e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6470bdb12c7SPeter Maydell		"GEN","$@")
64846e7b706SFam Zhengtests/test-qapi-visit.c tests/test-qapi-visit.h :\
64946e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
65046e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
65146e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6520bdb12c7SPeter Maydell		"GEN","$@")
65346e7b706SFam Zhengtests/test-qmp-commands.h tests/test-qmp-marshal.c :\
65446e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
65546e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
65646e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6570bdb12c7SPeter Maydell		"GEN","$@")
65846e7b706SFam Zhengtests/test-qapi-event.c tests/test-qapi-event.h :\
65946e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
66046e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
66146e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6620bdb12c7SPeter Maydell		"GEN","$@")
66346e7b706SFam Zhengtests/test-qmp-introspect.c tests/test-qmp-introspect.h :\
66446e7b706SFam Zheng$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py)
66546e7b706SFam Zheng	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \
66646e7b706SFam Zheng		$(gen-out-type) -o tests -p "test-" $<, \
6670bdb12c7SPeter Maydell		"GEN","$@")
66846e7b706SFam Zheng
66980d1f2e4SMarkus Armbrustertests/qapi-schema/doc-good.test.texi: $(SRC_PATH)/tests/qapi-schema/doc-good.json $(SRC_PATH)/scripts/qapi2texi.py $(qapi-py)
67080d1f2e4SMarkus Armbruster	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi2texi.py $< > $@,"GEN","$@")
67180d1f2e4SMarkus Armbruster
67246e7b706SFam Zhengtests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y)
67346e7b706SFam Zhengtests/test-string-input-visitor$(EXESUF): tests/test-string-input-visitor.o $(test-qapi-obj-y)
67446e7b706SFam Zhengtests/test-qmp-event$(EXESUF): tests/test-qmp-event.o $(test-qapi-obj-y)
675b3db211fSDaniel P. Berrangetests/test-qobject-output-visitor$(EXESUF): tests/test-qobject-output-visitor.o $(test-qapi-obj-y)
676a15fcc3cSEric Blaketests/test-clone-visitor$(EXESUF): tests/test-clone-visitor.o $(test-qapi-obj-y)
677b3db211fSDaniel P. Berrangetests/test-qobject-input-visitor$(EXESUF): tests/test-qobject-input-visitor.o $(test-qapi-obj-y)
67846e7b706SFam Zhengtests/test-qmp-commands$(EXESUF): tests/test-qmp-commands.o tests/test-qmp-marshal.o $(test-qapi-obj-y)
67946e7b706SFam Zhengtests/test-visitor-serialization$(EXESUF): tests/test-visitor-serialization.o $(test-qapi-obj-y)
68046e7b706SFam Zhengtests/test-opts-visitor$(EXESUF): tests/test-opts-visitor.o $(test-qapi-obj-y)
68146e7b706SFam Zheng
682f539fbe3SJose Ricardo Zivianitests/test-shift128$(EXESUF): tests/test-shift128.o $(test-util-obj-y)
68346e7b706SFam Zhengtests/test-mul64$(EXESUF): tests/test-mul64.o $(test-util-obj-y)
68446e7b706SFam Zhengtests/test-bitops$(EXESUF): tests/test-bitops.o $(test-util-obj-y)
685c3f8962fSAlex Bennéetests/test-bitcnt$(EXESUF): tests/test-bitcnt.o $(test-util-obj-y)
68646e7b706SFam Zhengtests/test-crypto-hash$(EXESUF): tests/test-crypto-hash.o $(test-crypto-obj-y)
6870128cd29SLongpeng(Mike)tests/benchmark-crypto-hash$(EXESUF): tests/benchmark-crypto-hash.o $(test-crypto-obj-y)
6884fd460bfSLongpeng(Mike)tests/test-crypto-hmac$(EXESUF): tests/test-crypto-hmac.o $(test-crypto-obj-y)
689c7a9af4bSLongpeng(Mike)tests/benchmark-crypto-hmac$(EXESUF): tests/benchmark-crypto-hmac.o $(test-crypto-obj-y)
69046e7b706SFam Zhengtests/test-crypto-cipher$(EXESUF): tests/test-crypto-cipher.o $(test-crypto-obj-y)
6911efd9d5eSLongpeng(Mike)tests/benchmark-crypto-cipher$(EXESUF): tests/benchmark-crypto-cipher.o $(test-crypto-obj-y)
69246e7b706SFam Zhengtests/test-crypto-secret$(EXESUF): tests/test-crypto-secret.o $(test-crypto-obj-y)
69346e7b706SFam Zhengtests/test-crypto-xts$(EXESUF): tests/test-crypto-xts.o $(test-crypto-obj-y)
69446e7b706SFam Zheng
69546e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-cflags := $(TASN1_CFLAGS)
69646e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-libs := $(TASN1_LIBS)
69746e7b706SFam Zhengtests/pkix_asn1_tab.o-cflags := $(TASN1_CFLAGS)
69846e7b706SFam Zheng
69946e7b706SFam Zhengtests/test-crypto-tlscredsx509.o-cflags := $(TASN1_CFLAGS)
70046e7b706SFam Zhengtests/test-crypto-tlscredsx509$(EXESUF): tests/test-crypto-tlscredsx509.o \
70146e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y)
70246e7b706SFam Zheng
70346e7b706SFam Zhengtests/test-crypto-tlssession.o-cflags := $(TASN1_CFLAGS)
70446e7b706SFam Zhengtests/test-crypto-tlssession$(EXESUF): tests/test-crypto-tlssession.o \
70546e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y)
70646e7b706SFam Zhengtests/test-io-task$(EXESUF): tests/test-io-task.o $(test-io-obj-y)
70746e7b706SFam Zhengtests/test-io-channel-socket$(EXESUF): tests/test-io-channel-socket.o \
70846e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
70946e7b706SFam Zhengtests/test-io-channel-file$(EXESUF): tests/test-io-channel-file.o \
71046e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
71146e7b706SFam Zhengtests/test-io-channel-tls$(EXESUF): tests/test-io-channel-tls.o \
71246e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \
71346e7b706SFam Zheng	tests/io-channel-helpers.o $(test-io-obj-y)
71446e7b706SFam Zhengtests/test-io-channel-command$(EXESUF): tests/test-io-channel-command.o \
71546e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
71646e7b706SFam Zhengtests/test-io-channel-buffer$(EXESUF): tests/test-io-channel-buffer.o \
71746e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
71846e7b706SFam Zhengtests/test-crypto-pbkdf$(EXESUF): tests/test-crypto-pbkdf.o $(test-crypto-obj-y)
71946e7b706SFam Zhengtests/test-crypto-ivgen$(EXESUF): tests/test-crypto-ivgen.o $(test-crypto-obj-y)
72046e7b706SFam Zhengtests/test-crypto-afsplit$(EXESUF): tests/test-crypto-afsplit.o $(test-crypto-obj-y)
72146e7b706SFam Zhengtests/test-crypto-block$(EXESUF): tests/test-crypto-block.o $(test-crypto-obj-y)
72246e7b706SFam Zheng
72346e7b706SFam Zhenglibqos-obj-y = tests/libqos/pci.o tests/libqos/fw_cfg.o tests/libqos/malloc.o
72446e7b706SFam Zhenglibqos-obj-y += tests/libqos/i2c.o tests/libqos/libqos.o
7258d6ef7c9SLaurent Vivierlibqos-spapr-obj-y = $(libqos-obj-y) tests/libqos/malloc-spapr.o
7268d6ef7c9SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/libqos-spapr.o
727eeddd59fSLaurent Vivierlibqos-spapr-obj-y += tests/libqos/rtas.o
728cf716b31SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/pci-spapr.o
72946e7b706SFam Zhenglibqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o
73046e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/malloc-pc.o tests/libqos/libqos-pc.o
73146e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/ahci.o
73246e7b706SFam Zhenglibqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o
73346e7b706SFam Zhenglibqos-imx-obj-y = $(libqos-obj-y) tests/libqos/i2c-imx.o
734aa9026fdSLaurent Vivierlibqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/usb.o
73530ca440eSLaurent 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
73646e7b706SFam Zheng
737f66e7ac8SMarkus Armbrustertests/qmp-test$(EXESUF): tests/qmp-test.o
73846e7b706SFam Zhengtests/device-introspect-test$(EXESUF): tests/device-introspect-test.o
73946e7b706SFam Zhengtests/rtc-test$(EXESUF): tests/rtc-test.o
74046e7b706SFam Zhengtests/m48t59-test$(EXESUF): tests/m48t59-test.o
74146e7b706SFam Zhengtests/endianness-test$(EXESUF): tests/endianness-test.o
74246e7b706SFam Zhengtests/spapr-phb-test$(EXESUF): tests/spapr-phb-test.o $(libqos-obj-y)
743fcbf4a3cSThomas Huthtests/prom-env-test$(EXESUF): tests/prom-env-test.o $(libqos-obj-y)
744eeddd59fSLaurent Viviertests/rtas-test$(EXESUF): tests/rtas-test.o $(libqos-spapr-obj-y)
74546e7b706SFam Zhengtests/fdc-test$(EXESUF): tests/fdc-test.o
74646e7b706SFam Zhengtests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y)
74746e7b706SFam Zhengtests/ahci-test$(EXESUF): tests/ahci-test.o $(libqos-pc-obj-y)
74846e7b706SFam Zhengtests/ipmi-kcs-test$(EXESUF): tests/ipmi-kcs-test.o
74946e7b706SFam Zhengtests/ipmi-bt-test$(EXESUF): tests/ipmi-bt-test.o
75046e7b706SFam Zhengtests/hd-geo-test$(EXESUF): tests/hd-geo-test.o
75146e7b706SFam Zhengtests/boot-order-test$(EXESUF): tests/boot-order-test.o $(libqos-obj-y)
752d2ab58ffSThomas Huthtests/boot-serial-test$(EXESUF): tests/boot-serial-test.o $(libqos-obj-y)
75346e7b706SFam Zhengtests/bios-tables-test$(EXESUF): tests/bios-tables-test.o \
7543248f1b4SBen Warren	tests/boot-sector.o tests/acpi-utils.o $(libqos-obj-y)
75546e7b706SFam Zhengtests/pxe-test$(EXESUF): tests/pxe-test.o tests/boot-sector.o $(libqos-obj-y)
75646e7b706SFam Zhengtests/tmp105-test$(EXESUF): tests/tmp105-test.o $(libqos-omap-obj-y)
75746e7b706SFam Zhengtests/ds1338-test$(EXESUF): tests/ds1338-test.o $(libqos-imx-obj-y)
7587a2334f7SCédric Le Goatertests/m25p80-test$(EXESUF): tests/m25p80-test.o
75946e7b706SFam Zhengtests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y)
76046e7b706SFam Zhengtests/q35-test$(EXESUF): tests/q35-test.o $(libqos-pc-obj-y)
76146e7b706SFam Zhengtests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y)
76246e7b706SFam Zhengtests/e1000-test$(EXESUF): tests/e1000-test.o
76346e7b706SFam Zhengtests/e1000e-test$(EXESUF): tests/e1000e-test.o $(libqos-pc-obj-y)
76446e7b706SFam Zhengtests/rtl8139-test$(EXESUF): tests/rtl8139-test.o $(libqos-pc-obj-y)
76546e7b706SFam Zhengtests/pcnet-test$(EXESUF): tests/pcnet-test.o
766ca8e4bf4SDavid Gibsontests/pnv-xscom-test$(EXESUF): tests/pnv-xscom-test.o
76746e7b706SFam Zhengtests/eepro100-test$(EXESUF): tests/eepro100-test.o
76846e7b706SFam Zhengtests/vmxnet3-test$(EXESUF): tests/vmxnet3-test.o
76946e7b706SFam Zhengtests/ne2000-test$(EXESUF): tests/ne2000-test.o
77046e7b706SFam Zhengtests/wdt_ib700-test$(EXESUF): tests/wdt_ib700-test.o
77146e7b706SFam Zhengtests/tco-test$(EXESUF): tests/tco-test.o $(libqos-pc-obj-y)
772d0a5cc5bSThomas Huthtests/virtio-balloon-test$(EXESUF): tests/virtio-balloon-test.o $(libqos-virtio-obj-y)
77346e7b706SFam Zhengtests/virtio-blk-test$(EXESUF): tests/virtio-blk-test.o $(libqos-virtio-obj-y)
77446e7b706SFam Zhengtests/virtio-net-test$(EXESUF): tests/virtio-net-test.o $(libqos-pc-obj-y) $(libqos-virtio-obj-y)
77546e7b706SFam Zhengtests/virtio-rng-test$(EXESUF): tests/virtio-rng-test.o $(libqos-pc-obj-y)
77646e7b706SFam Zhengtests/virtio-scsi-test$(EXESUF): tests/virtio-scsi-test.o $(libqos-virtio-obj-y)
777557a4cc0SGreg Kurztests/virtio-9p-test$(EXESUF): tests/virtio-9p-test.o $(libqos-virtio-obj-y)
778d0a5cc5bSThomas Huthtests/virtio-serial-test$(EXESUF): tests/virtio-serial-test.o $(libqos-virtio-obj-y)
779d0a5cc5bSThomas Huthtests/virtio-console-test$(EXESUF): tests/virtio-console-test.o $(libqos-virtio-obj-y)
78046e7b706SFam Zhengtests/tpci200-test$(EXESUF): tests/tpci200-test.o
78146e7b706SFam Zhengtests/display-vga-test$(EXESUF): tests/display-vga-test.o
78246e7b706SFam Zhengtests/ipoctal232-test$(EXESUF): tests/ipoctal232-test.o
78346e7b706SFam Zhengtests/qom-test$(EXESUF): tests/qom-test.o
78478f86a2bSThomas Huthtests/test-hmp$(EXESUF): tests/test-hmp.o
7852f84a92eSThomas Huthtests/drive_del-test$(EXESUF): tests/drive_del-test.o $(libqos-virtio-obj-y)
78646e7b706SFam Zhengtests/qdev-monitor-test$(EXESUF): tests/qdev-monitor-test.o $(libqos-pc-obj-y)
78746e7b706SFam Zhengtests/nvme-test$(EXESUF): tests/nvme-test.o
78846e7b706SFam Zhengtests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
78946e7b706SFam Zhengtests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
79046e7b706SFam Zhengtests/ac97-test$(EXESUF): tests/ac97-test.o
79146e7b706SFam Zhengtests/es1370-test$(EXESUF): tests/es1370-test.o
79246e7b706SFam Zhengtests/intel-hda-test$(EXESUF): tests/intel-hda-test.o
79346e7b706SFam Zhengtests/ioh3420-test$(EXESUF): tests/ioh3420-test.o
79446e7b706SFam Zhengtests/usb-hcd-ohci-test$(EXESUF): tests/usb-hcd-ohci-test.o $(libqos-usb-obj-y)
79546e7b706SFam Zhengtests/usb-hcd-uhci-test$(EXESUF): tests/usb-hcd-uhci-test.o $(libqos-usb-obj-y)
79646e7b706SFam Zhengtests/usb-hcd-ehci-test$(EXESUF): tests/usb-hcd-ehci-test.o $(libqos-usb-obj-y)
79746e7b706SFam Zhengtests/usb-hcd-xhci-test$(EXESUF): tests/usb-hcd-xhci-test.o $(libqos-usb-obj-y)
798*152e0393SThomas Huthtests/cpu-plug-test$(EXESUF): tests/cpu-plug-test.o
7992656bfd9SJuan Quintelatests/migration-test$(EXESUF): tests/migration-test.o
800c2b38b27SPaolo Bonzinitests/vhost-user-test$(EXESUF): tests/vhost-user-test.o $(test-util-obj-y) \
80132d955a4SMarc-André Lureau	$(qtest-obj-y) $(test-io-obj-y) $(libqos-virtio-obj-y) $(libqos-pc-obj-y) \
80232d955a4SMarc-André Lureau	$(chardev-obj-y)
80346e7b706SFam Zhengtests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
80446e7b706SFam Zhengtests/test-qemu-opts$(EXESUF): tests/test-qemu-opts.o $(test-util-obj-y)
805599c156bSMarkus Armbrustertests/test-keyval$(EXESUF): tests/test-keyval.o $(test-util-obj-y) $(test-qapi-obj-y)
80646e7b706SFam Zhengtests/test-write-threshold$(EXESUF): tests/test-write-threshold.o $(test-block-obj-y)
80746e7b706SFam Zhengtests/test-netfilter$(EXESUF): tests/test-netfilter.o $(qtest-obj-y)
80846e7b706SFam Zhengtests/test-filter-mirror$(EXESUF): tests/test-filter-mirror.o $(qtest-obj-y)
80946e7b706SFam Zhengtests/test-filter-redirector$(EXESUF): tests/test-filter-redirector.o $(qtest-obj-y)
8106efef58eSEduardo Habkosttests/test-x86-cpuid-compat$(EXESUF): tests/test-x86-cpuid-compat.o $(qtest-obj-y)
8112bf25e07SLaurent Viviertests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
812660174fcSPaolo Bonzinitests/megasas-test$(EXESUF): tests/megasas-test.o $(libqos-spapr-obj-y) $(libqos-pc-obj-y)
813de97cdedSMarc-André Lureautests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o $(test-util-obj-y) libvhost-user.a
814c739cdddSFam Zhengtests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y)
815882fac37SDmitry Osipenkotests/test-arm-mptimer$(EXESUF): tests/test-arm-mptimer.o
8166c873d11SMarkus Armbrustertests/test-qapi-util$(EXESUF): tests/test-qapi-util.o $(test-util-obj-y)
81763baf8bfSIgor Mammedovtests/numa-test$(EXESUF): tests/numa-test.o
8184871b51bSMichael S. Tsirkintests/vmgenid-test$(EXESUF): tests/vmgenid-test.o tests/boot-sector.o tests/acpi-utils.o
81946e7b706SFam Zheng
820409437e1SDaniel P. Berrangetests/migration/stress$(EXESUF): tests/migration/stress.o
8210bdb12c7SPeter Maydell	$(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@")
822409437e1SDaniel P. Berrange
823409437e1SDaniel P. BerrangeINITRD_WORK_DIR=tests/migration/initrd
824409437e1SDaniel P. Berrange
825409437e1SDaniel P. Berrangetests/migration/initrd-stress.img: tests/migration/stress$(EXESUF)
826409437e1SDaniel P. Berrange	mkdir -p $(INITRD_WORK_DIR)
827409437e1SDaniel P. Berrange	cp $< $(INITRD_WORK_DIR)/init
828409437e1SDaniel P. Berrange	(cd $(INITRD_WORK_DIR) && (find | cpio --quiet -o -H newc | gzip -9)) > $@
829409437e1SDaniel P. Berrange	rm $(INITRD_WORK_DIR)/init
830409437e1SDaniel P. Berrange	rmdir $(INITRD_WORK_DIR)
831409437e1SDaniel P. Berrange
83246e7b706SFam Zhengifeq ($(CONFIG_POSIX),y)
83346e7b706SFam ZhengLIBS += -lutil
83446e7b706SFam Zhengendif
83546e7b706SFam Zheng
83646e7b706SFam Zheng# QTest rules
83746e7b706SFam Zheng
83846e7b706SFam ZhengTARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS)))
83946e7b706SFam Zhengifeq ($(CONFIG_POSIX),y)
84046e7b706SFam ZhengQTEST_TARGETS = $(TARGETS)
84146e7b706SFam Zhengcheck-qtest-y=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))
84246e7b706SFam Zhengcheck-qtest-y += $(check-qtest-generic-y)
84346e7b706SFam Zhengelse
84446e7b706SFam ZhengQTEST_TARGETS =
84546e7b706SFam Zhengendif
84646e7b706SFam Zheng
84746e7b706SFam Zhengqtest-obj-y = tests/libqtest.o $(test-util-obj-y)
84846e7b706SFam Zheng$(check-qtest-y): $(qtest-obj-y)
84946e7b706SFam Zheng
8504be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): qemu-ga$(EXESUF)
8514be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): tests/test-qga.o $(qtest-obj-y)
85246e7b706SFam Zheng
85346e7b706SFam ZhengSPEED = quick
85446e7b706SFam ZhengGTESTER_OPTIONS = -k $(if $(V),--verbose,-q)
85546e7b706SFam ZhengGCOV_OPTIONS = -n $(if $(V),-f,)
85646e7b706SFam Zheng
85746e7b706SFam Zheng# gtester tests, possibly with verbose output
85846e7b706SFam Zheng
85946e7b706SFam Zheng.PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS))
860b94b330eSPhilippe Mathieu-Daudé$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: subdir-%-softmmu $(check-qtest-y)
86146e7b706SFam Zheng	$(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,)
86246e7b706SFam Zheng	$(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
86346e7b706SFam Zheng		QTEST_QEMU_IMG=qemu-img$(EXESUF) \
86464f871e3SPeter Maydell		MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \
8650bdb12c7SPeter Maydell		gtester $(GTESTER_OPTIONS) -m=$(SPEED) $(check-qtest-$*-y) $(check-qtest-generic-y),"GTESTER","$@")
86646e7b706SFam Zheng	$(if $(CONFIG_GCOV),@for f in $(gcov-files-$*-y) $(gcov-files-generic-y); do \
86746e7b706SFam Zheng	  echo Gcov report for $$f:;\
86846e7b706SFam Zheng	  $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \
86946e7b706SFam Zheng	done,)
87046e7b706SFam Zheng
8711efd9d5eSLongpeng(Mike).PHONY: $(patsubst %, check-%, $(check-unit-y) $(check-speed-y))
8721efd9d5eSLongpeng(Mike)$(patsubst %, check-%, $(check-unit-y) $(check-speed-y)): check-%: %
87346e7b706SFam Zheng	$(if $(CONFIG_GCOV),@rm -f *.gcda */*.gcda */*/*.gcda */*/*/*.gcda,)
87446e7b706SFam Zheng	$(call quiet-command, \
87564f871e3SPeter Maydell		MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} \
8760bdb12c7SPeter Maydell		gtester $(GTESTER_OPTIONS) -m=$(SPEED) $*,"GTESTER","$*")
87746e7b706SFam Zheng	$(if $(CONFIG_GCOV),@for f in $(gcov-files-$(subst tests/,,$*)-y) $(gcov-files-generic-y); do \
87846e7b706SFam Zheng	  echo Gcov report for $$f:;\
87946e7b706SFam Zheng	  $(GCOV) $(GCOV_OPTIONS) $$f -o `dirname $$f`; \
88046e7b706SFam Zheng	done,)
88146e7b706SFam Zheng
88246e7b706SFam Zheng# gtester tests with XML output
88346e7b706SFam Zheng
88446e7b706SFam Zheng$(patsubst %, check-report-qtest-%.xml, $(QTEST_TARGETS)): check-report-qtest-%.xml: $(check-qtest-y)
88546e7b706SFam Zheng	$(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
88646e7b706SFam Zheng		QTEST_QEMU_IMG=qemu-img$(EXESUF) \
8870bdb12c7SPeter Maydell	  gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $(check-qtest-$*-y) $(check-qtest-generic-y),"GTESTER","$@")
88846e7b706SFam Zheng
88946e7b706SFam Zhengcheck-report-unit.xml: $(check-unit-y)
8900bdb12c7SPeter Maydell	$(call quiet-command,gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $^,"GTESTER","$@")
89146e7b706SFam Zheng
89246e7b706SFam Zheng# Reports and overall runs
89346e7b706SFam Zheng
89446e7b706SFam Zhengcheck-report.xml: $(patsubst %,check-report-qtest-%.xml, $(QTEST_TARGETS)) check-report-unit.xml
8950bdb12c7SPeter Maydell	$(call quiet-command,$(SRC_PATH)/scripts/gtester-cat $^ > $@,"GEN","$@")
89646e7b706SFam Zheng
89746e7b706SFam Zhengcheck-report.html: check-report.xml
8980bdb12c7SPeter Maydell	$(call quiet-command,gtester-report $< > $@,"GEN","$@")
89946e7b706SFam Zheng
90046e7b706SFam Zheng
90146e7b706SFam Zheng# Other tests
90246e7b706SFam Zheng
90346e7b706SFam ZhengQEMU_IOTESTS_HELPERS-$(CONFIG_LINUX) = tests/qemu-iotests/socket_scm_helper$(EXESUF)
90446e7b706SFam Zheng
90546e7b706SFam Zheng.PHONY: check-tests/qemu-iotests-quick.sh
90646e7b706SFam Zhengcheck-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF) $(QEMU_IOTESTS_HELPERS-y)
90746e7b706SFam Zheng	$<
90846e7b706SFam Zheng
90946e7b706SFam Zheng.PHONY: $(patsubst %, check-%, $(check-qapi-schema-y))
91046e7b706SFam Zheng$(patsubst %, check-%, $(check-qapi-schema-y)): check-%.json: $(SRC_PATH)/%.json
91146e7b706SFam Zheng	$(call quiet-command, PYTHONPATH=$(SRC_PATH)/scripts \
91246e7b706SFam Zheng		$(PYTHON) $(SRC_PATH)/tests/qapi-schema/test-qapi.py \
91346e7b706SFam Zheng		$^ >$*.test.out 2>$*.test.err; \
91446e7b706SFam Zheng		echo $$? >$*.test.exit, \
9150bdb12c7SPeter Maydell		"TEST","$*.out")
91646e7b706SFam Zheng	@diff -q $(SRC_PATH)/$*.out $*.test.out
91746e7b706SFam Zheng	@# Sanitize error messages (make them independent of build directory)
91846e7b706SFam Zheng	@perl -p -e 's|\Q$(SRC_PATH)\E/||g' $*.test.err | diff -q $(SRC_PATH)/$*.err -
91946e7b706SFam Zheng	@diff -q $(SRC_PATH)/$*.exit $*.test.exit
92046e7b706SFam Zheng
92180d1f2e4SMarkus Armbruster.PHONY: check-tests/qapi-schema/doc-good.texi
92280d1f2e4SMarkus Armbrustercheck-tests/qapi-schema/doc-good.texi: tests/qapi-schema/doc-good.test.texi
92380d1f2e4SMarkus Armbruster	@diff -q $(SRC_PATH)/tests/qapi-schema/doc-good.texi $<
92480d1f2e4SMarkus Armbruster
92546e7b706SFam Zheng# Consolidated targets
92646e7b706SFam Zheng
92746e7b706SFam Zheng.PHONY: check-qapi-schema check-qtest check-unit check check-clean
92880d1f2e4SMarkus Armbrustercheck-qapi-schema: $(patsubst %,check-%, $(check-qapi-schema-y)) check-tests/qapi-schema/doc-good.texi
92946e7b706SFam Zhengcheck-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS))
93046e7b706SFam Zhengcheck-unit: $(patsubst %,check-%, $(check-unit-y))
9311efd9d5eSLongpeng(Mike)check-speed: $(patsubst %,check-%, $(check-speed-y))
93246e7b706SFam Zhengcheck-block: $(patsubst %,check-%, $(check-block-y))
93346e7b706SFam Zhengcheck: check-qapi-schema check-unit check-qtest
93446e7b706SFam Zhengcheck-clean:
93546e7b706SFam Zheng	$(MAKE) -C tests/tcg clean
93646e7b706SFam Zheng	rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
93746e7b706SFam Zheng	rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST), $(check-qtest-$(target)-y)) $(check-qtest-generic-y))
93846e7b706SFam Zheng
93946e7b706SFam Zhengclean: check-clean
94046e7b706SFam Zheng
94146e7b706SFam Zheng# Build the help program automatically
94246e7b706SFam Zheng
94346e7b706SFam Zhengall: $(QEMU_IOTESTS_HELPERS-y)
94446e7b706SFam Zheng
94546e7b706SFam Zheng-include $(wildcard tests/*.d)
94646e7b706SFam Zheng-include $(wildcard tests/libqos/*.d)
947e45eaef9SFam Zheng
948e45eaef9SFam Zhengendif
949