xref: /qemu/tests/Makefile.include (revision 3b8593ee)
1*3b8593eeSMarkus Armbruster# -*- Mode: makefile -*-
2e45eaef9SFam Zheng
3e45eaef9SFam Zheng.PHONY: check-help
4e45eaef9SFam Zhengcheck-help:
5e45eaef9SFam Zheng	@echo "Regression testing targets:"
6e45eaef9SFam Zheng	@echo
754f96b45SCleber Rosa	@echo " $(MAKE) check                Run unit, qapi-schema, qtest and decodetree"
854f96b45SCleber Rosa	@echo
9b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-qtest-TARGET   Run qtest tests for given target"
10b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-qtest          Run qtest tests"
11b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-unit           Run qobject tests"
12b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-speed          Run qobject speed tests"
13b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-qapi-schema    Run QAPI schema tests"
14b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-block          Run block tests"
158ba0a820SAlex Bennée	@echo " $(MAKE) check-tcg            Run TCG tests"
1676170102SAlex Bennée	@echo " $(MAKE) check-softfloat      Run FPU emulation tests"
17a56931eeSCleber Rosa	@echo " $(MAKE) check-acceptance     Run all acceptance (functional) tests"
1854f96b45SCleber Rosa	@echo
19b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-report.html    Generates an HTML test report"
2021313721SCleber Rosa	@echo " $(MAKE) check-venv           Creates a Python venv for tests"
2154f96b45SCleber Rosa	@echo " $(MAKE) check-clean          Clean the tests and related data"
22e45eaef9SFam Zheng	@echo
23e45eaef9SFam Zheng	@echo "Please note that HTML reports do not regenerate if the unit tests"
2454f96b45SCleber Rosa	@echo "have not changed."
25e45eaef9SFam Zheng	@echo
26e45eaef9SFam Zheng	@echo "The variable SPEED can be set to control the gtester speed setting."
27b98a3baeSPhilippe Mathieu-Daudé	@echo "Default options are -k and (for $(MAKE) V=1) --verbose; they can be"
28e45eaef9SFam Zheng	@echo "changed with variable GTESTER_OPTIONS."
29e45eaef9SFam Zheng
30e45eaef9SFam Zhengifneq ($(wildcard config-host.mak),)
3146e7b706SFam Zhengexport SRC_PATH
3246e7b706SFam Zheng
33fb0bc835SMarkus Armbruster# TODO don't duplicate $(SRC_PATH)/Makefile's qapi-py here
34fb0bc835SMarkus Armbrusterqapi-py = $(SRC_PATH)/scripts/qapi/commands.py \
35fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/events.py \
36fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/introspect.py \
37fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/types.py \
38fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/visit.py \
39fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/common.py \
40fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/doc.py \
41fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi-gen.py
4246e7b706SFam Zheng
4346e7b706SFam Zheng# Get the list of all supported sysemu targets
4446e7b706SFam ZhengSYSEMU_TARGET_LIST := $(subst -softmmu.mak,,$(notdir \
4546e7b706SFam Zheng   $(wildcard $(SRC_PATH)/default-configs/*-softmmu.mak)))
4646e7b706SFam Zheng
477a6c377fSEric Blakecheck-unit-y += tests/check-qdict$(EXESUF)
48992159c7SMarkus Armbrustercheck-unit-y += tests/check-block-qdict$(EXESUF)
4929de2804SLaurent Viviercheck-unit-$(CONFIG_SOFTMMU) += tests/test-char$(EXESUF)
5001b2ffceSMarc-André Lureaucheck-unit-y += tests/check-qnum$(EXESUF)
5146e7b706SFam Zhengcheck-unit-y += tests/check-qstring$(EXESUF)
5246e7b706SFam Zhengcheck-unit-y += tests/check-qlist$(EXESUF)
5346e7b706SFam Zhengcheck-unit-y += tests/check-qnull$(EXESUF)
541b76e838SMax Reitzcheck-unit-y += tests/check-qobject$(EXESUF)
5546e7b706SFam Zhengcheck-unit-y += tests/check-qjson$(EXESUF)
56382176b4SMarc-André Lureaucheck-unit-y += tests/check-qlit$(EXESUF)
57b3db211fSDaniel P. Berrangecheck-unit-y += tests/test-qobject-output-visitor$(EXESUF)
58a15fcc3cSEric Blakecheck-unit-y += tests/test-clone-visitor$(EXESUF)
59b3db211fSDaniel P. Berrangecheck-unit-y += tests/test-qobject-input-visitor$(EXESUF)
60834a3f34SMarkus Armbrustercheck-unit-y += tests/test-qmp-cmds$(EXESUF)
6146e7b706SFam Zhengcheck-unit-y += tests/test-string-input-visitor$(EXESUF)
6246e7b706SFam Zhengcheck-unit-y += tests/test-string-output-visitor$(EXESUF)
6346e7b706SFam Zhengcheck-unit-y += tests/test-qmp-event$(EXESUF)
6446e7b706SFam Zhengcheck-unit-y += tests/test-opts-visitor$(EXESUF)
6529de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-coroutine$(EXESUF)
6646e7b706SFam Zhengcheck-unit-y += tests/test-visitor-serialization$(EXESUF)
6746e7b706SFam Zhengcheck-unit-y += tests/test-iov$(EXESUF)
6829de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-aio$(EXESUF)
6929de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-aio-multithread$(EXESUF)
7029de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-throttle$(EXESUF)
7129de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-thread-pool$(EXESUF)
7229de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-hbitmap$(EXESUF)
7329de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-bdrv-drain$(EXESUF)
7429de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-bdrv-graph-mod$(EXESUF)
7529de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-blockjob$(EXESUF)
7629de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-blockjob-txn$(EXESUF)
7729de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-block-backend$(EXESUF)
7829de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-block-iothread$(EXESUF)
7929de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-image-locking$(EXESUF)
8046e7b706SFam Zhengcheck-unit-y += tests/test-x86-cpuid$(EXESUF)
8146e7b706SFam Zheng# all code tested by test-x86-cpuid is inside topology.h
8246e7b706SFam Zhengifeq ($(CONFIG_SOFTMMU),y)
8346e7b706SFam Zhengcheck-unit-y += tests/test-xbzrle$(EXESUF)
8446e7b706SFam Zhengcheck-unit-$(CONFIG_POSIX) += tests/test-vmstate$(EXESUF)
8546e7b706SFam Zhengendif
8646e7b706SFam Zhengcheck-unit-y += tests/test-cutils$(EXESUF)
87f539fbe3SJose Ricardo Zivianicheck-unit-y += tests/test-shift128$(EXESUF)
8846e7b706SFam Zhengcheck-unit-y += tests/test-mul64$(EXESUF)
8946e7b706SFam Zhengcheck-unit-y += tests/test-int128$(EXESUF)
9046e7b706SFam Zheng# all code tested by test-int128 is inside int128.h
9146e7b706SFam Zhengcheck-unit-y += tests/rcutorture$(EXESUF)
9246e7b706SFam Zhengcheck-unit-y += tests/test-rcu-list$(EXESUF)
9390487e45SEmilio G. Cotacheck-unit-y += tests/test-rcu-simpleq$(EXESUF)
94dbf8862aSEmilio G. Cotacheck-unit-y += tests/test-rcu-tailq$(EXESUF)
95ff9249b7SEmilio G. Cotacheck-unit-y += tests/test-qdist$(EXESUF)
961a95404fSEmilio G. Cotacheck-unit-y += tests/test-qht$(EXESUF)
97a36270a4SAlex Bennéecheck-unit-y += tests/test-qht-par$(EXESUF)
9846e7b706SFam Zhengcheck-unit-y += tests/test-bitops$(EXESUF)
99c3f8962fSAlex Bennéecheck-unit-y += tests/test-bitcnt$(EXESUF)
100692fbdf9SMarc-André Lureaucheck-unit-y += tests/test-qdev-global-props$(EXESUF)
10146e7b706SFam Zhengcheck-unit-y += tests/check-qom-interface$(EXESUF)
10246e7b706SFam Zhengcheck-unit-y += tests/check-qom-proplist$(EXESUF)
10346e7b706SFam Zhengcheck-unit-y += tests/test-qemu-opts$(EXESUF)
104d454dbe0SMarkus Armbrustercheck-unit-y += tests/test-keyval$(EXESUF)
10529de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-write-threshold$(EXESUF)
10629de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-crypto-hash$(EXESUF)
10729de2804SLaurent Viviercheck-speed-$(CONFIG_BLOCK) += tests/benchmark-crypto-hash$(EXESUF)
10829de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-crypto-hmac$(EXESUF)
10929de2804SLaurent Viviercheck-speed-$(CONFIG_BLOCK) += tests/benchmark-crypto-hmac$(EXESUF)
11029de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-crypto-cipher$(EXESUF)
11129de2804SLaurent Viviercheck-speed-$(CONFIG_BLOCK) += tests/benchmark-crypto-cipher$(EXESUF)
11229de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-crypto-secret$(EXESUF)
11329de2804SLaurent Viviercheck-unit-$(call land,$(CONFIG_BLOCK),$(CONFIG_GNUTLS)) += tests/test-crypto-tlscredsx509$(EXESUF)
11429de2804SLaurent Viviercheck-unit-$(call land,$(CONFIG_BLOCK),$(CONFIG_GNUTLS)) += tests/test-crypto-tlssession$(EXESUF)
11546e7b706SFam Zhengifneq (,$(findstring qemu-ga,$(TOOLS)))
116a9d2e3f1SPhilippe Mathieu-Daudécheck-unit-$(call land,$(CONFIG_LINUX),$(CONFIG_VIRTIO_SERIAL)) += tests/test-qga$(EXESUF)
11746e7b706SFam Zhengendif
11846e7b706SFam Zhengcheck-unit-y += tests/test-timed-average$(EXESUF)
11990e33dfeSDaniel P. Berrangécheck-unit-$(CONFIG_INOTIFY1) += tests/test-util-filemonitor$(EXESUF)
12058dc31f1SDaniel P. Berrangecheck-unit-y += tests/test-util-sockets$(EXESUF)
12129de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-authz-simple$(EXESUF)
12229de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-authz-list$(EXESUF)
12329de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-authz-listfile$(EXESUF)
12429de2804SLaurent Viviercheck-unit-$(call land,$(CONFIG_BLOCK),$(CONFIG_AUTH_PAM)) += tests/test-authz-pam$(EXESUF)
12529de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-io-task$(EXESUF)
12629de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-io-channel-socket$(EXESUF)
12729de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-io-channel-file$(EXESUF)
12829de2804SLaurent Viviercheck-unit-$(call land,$(CONFIG_BLOCK),$(CONFIG_GNUTLS)) += tests/test-io-channel-tls$(EXESUF)
12929de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-io-channel-command$(EXESUF)
13029de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-io-channel-buffer$(EXESUF)
13146e7b706SFam Zhengcheck-unit-y += tests/test-base64$(EXESUF)
13229de2804SLaurent Viviercheck-unit-$(call land,$(CONFIG_BLOCK),$(if $(CONFIG_NETTLE),y,$(CONFIG_GCRYPT))) += tests/test-crypto-pbkdf$(EXESUF)
13329de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK) += tests/test-crypto-ivgen$(EXESUF)
13429de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK)  += tests/test-crypto-afsplit$(EXESUF)
13529de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK)  += tests/test-crypto-xts$(EXESUF)
13629de2804SLaurent Viviercheck-unit-$(CONFIG_BLOCK)  += tests/test-crypto-block$(EXESUF)
13746e7b706SFam Zhengcheck-unit-y += tests/test-logging$(EXESUF)
13829de2804SLaurent Viviercheck-unit-$(call land,$(CONFIG_BLOCK),$(CONFIG_REPLICATION)) += tests/test-replication$(EXESUF)
139efad6682SRichard Hendersoncheck-unit-y += tests/test-bufferiszero$(EXESUF)
140c739cdddSFam Zhengcheck-unit-y += tests/test-uuid$(EXESUF)
14124b94625SPaolo Bonzinicheck-unit-y += tests/ptimer-test$(EXESUF)
1426c873d11SMarkus Armbrustercheck-unit-y += tests/test-qapi-util$(EXESUF)
14346e7b706SFam Zheng
14446e7b706SFam Zhengcheck-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh
14546e7b706SFam Zheng
14646e7b706SFam Zheng# All QTests for now are POSIX-only, but the dependencies are
14746e7b706SFam Zheng# really in libqtest, not in the testcases themselves.
14846e7b706SFam Zheng
1497a6c377fSEric Blakecheck-qtest-generic-y += tests/qmp-test$(EXESUF)
150d93bb9d5SMarkus Armbrustercheck-qtest-generic-y += tests/qmp-cmd-test$(EXESUF)
151d93bb9d5SMarkus Armbruster
152f66e7ac8SMarkus Armbrustercheck-qtest-generic-y += tests/device-introspect-test$(EXESUF)
15342f45505SThomas Huthcheck-qtest-generic-y += tests/cdrom-test$(EXESUF)
15446e7b706SFam Zheng
155a3780b22SJuan Quintelacheck-qtest-pci-$(CONFIG_RTL8139_PCI) += tests/rtl8139-test$(EXESUF)
156b6016dffSThomas Huthcheck-qtest-pci-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
157e995ed24SJuan Quintelacheck-qtest-pci-$(CONFIG_HDA) += tests/intel-hda-test$(EXESUF)
1581336e608SJuan Quintelacheck-qtest-pci-$(CONFIG_IVSHMEM_DEVICE) += tests/ivshmem-test$(EXESUF)
15946e7b706SFam Zheng
160c9324bf5SThomas Huthcheck-qtest-i386-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
16146e7b706SFam Zhengcheck-qtest-i386-y += tests/fdc-test$(EXESUF)
16246e7b706SFam Zhengcheck-qtest-i386-y += tests/ide-test$(EXESUF)
16346e7b706SFam Zhengcheck-qtest-i386-y += tests/ahci-test$(EXESUF)
16446e7b706SFam Zhengcheck-qtest-i386-y += tests/hd-geo-test$(EXESUF)
16546e7b706SFam Zhengcheck-qtest-i386-y += tests/boot-order-test$(EXESUF)
16646e7b706SFam Zhengcheck-qtest-i386-y += tests/bios-tables-test$(EXESUF)
167dff1ba07SJuan Quintelacheck-qtest-i386-$(CONFIG_SGA) += tests/boot-serial-test$(EXESUF)
168d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
16946e7b706SFam Zhengcheck-qtest-i386-y += tests/rtc-test$(EXESUF)
170b6016dffSThomas Huthcheck-qtest-i386-$(CONFIG_ISA_IPMI_KCS) += tests/ipmi-kcs-test$(EXESUF)
171f1231399SPeter Maydell# Disabled temporarily as it fails intermittently especially under NetBSD VM
172b6016dffSThomas Huth# check-qtest-i386-$(CONFIG_ISA_IPMI_BT) += tests/ipmi-bt-test$(EXESUF)
17346e7b706SFam Zhengcheck-qtest-i386-y += tests/i440fx-test$(EXESUF)
17446e7b706SFam Zhengcheck-qtest-i386-y += tests/fw_cfg-test$(EXESUF)
1750d9d4872SDavid Hildenbrandcheck-qtest-i386-y += tests/device-plug-test$(EXESUF)
17646e7b706SFam Zhengcheck-qtest-i386-y += tests/drive_del-test$(EXESUF)
17772f911d4SThomas Huthcheck-qtest-i386-$(CONFIG_WDT_IB700) += tests/wdt_ib700-test$(EXESUF)
17846e7b706SFam Zhengcheck-qtest-i386-y += tests/tco-test$(EXESUF)
17946e7b706SFam Zhengcheck-qtest-i386-y += $(check-qtest-pci-y)
180c0b5be52SJuan Quintelacheck-qtest-i386-$(CONFIG_PVPANIC) += tests/pvpanic-test$(EXESUF)
181d7d5e279SJuan Quintelacheck-qtest-i386-$(CONFIG_I82801B11) += tests/i82801b11-test$(EXESUF)
1824a39edd8SJuan Quintelacheck-qtest-i386-$(CONFIG_IOH3420) += tests/ioh3420-test$(EXESUF)
1837c0dfc33SJuan Quintelacheck-qtest-i386-$(CONFIG_USB_UHCI) += tests/usb-hcd-uhci-test$(EXESUF)
184dad5ddceSJuan Quintelaifeq ($(CONFIG_USB_ECHI)$(CONFIG_USB_UHCI),yy)
18546e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-ehci-test$(EXESUF)
186dad5ddceSJuan Quintelaendif
187c9b688b4SJuan Quintelacheck-qtest-i386-$(CONFIG_USB_XHCI_NEC) += tests/usb-hcd-xhci-test$(EXESUF)
188152e0393SThomas Huthcheck-qtest-i386-y += tests/cpu-plug-test$(EXESUF)
18946e7b706SFam Zhengcheck-qtest-i386-y += tests/q35-test$(EXESUF)
19083f3c709SBen Warrencheck-qtest-i386-y += tests/vmgenid-test$(EXESUF)
191889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_CRB) += tests/tpm-crb-swtpm-test$(EXESUF)
192889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_CRB) += tests/tpm-crb-test$(EXESUF)
193889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_TIS) += tests/tpm-tis-swtpm-test$(EXESUF)
194889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_TIS) += tests/tpm-tis-test$(EXESUF)
195d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
1967f57d58dSThomas Huthcheck-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
197a3780b22SJuan Quintelacheck-qtest-i386-$(CONFIG_RTL8139_PCI) += tests/test-filter-redirector$(EXESUF)
1982656bfd9SJuan Quintelacheck-qtest-i386-y += tests/migration-test$(EXESUF)
1996efef58eSEduardo Habkostcheck-qtest-i386-y += tests/test-x86-cpuid-compat$(EXESUF)
20063baf8bfSIgor Mammedovcheck-qtest-i386-y += tests/numa-test$(EXESUF)
2010ee2e9daSMarc-André Lureaucheck-qtest-x86_64-y += $(check-qtest-i386-y)
20229531542SThomas Huth
2037a6c377fSEric Blakecheck-qtest-alpha-y += tests/boot-serial-test$(EXESUF)
204c2077ec2SThomas Huthcheck-qtest-alpha-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
205d2ab58ffSThomas Huth
2067a6c377fSEric Blakecheck-qtest-hppa-y += tests/boot-serial-test$(EXESUF)
207c2077ec2SThomas Huthcheck-qtest-hppa-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
2083ff6dd47SRichard Henderson
209598a29f3SThomas Huthcheck-qtest-m68k-y = tests/boot-serial-test$(EXESUF)
210598a29f3SThomas Huth
2117a6c377fSEric Blakecheck-qtest-microblaze-y += tests/boot-serial-test$(EXESUF)
212acf53766SThomas Huth
213c9324bf5SThomas Huthcheck-qtest-mips-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
214c2077ec2SThomas Huthcheck-qtest-mips-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
215c9324bf5SThomas Huth
216c9324bf5SThomas Huthcheck-qtest-mips64-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
217c2077ec2SThomas Huthcheck-qtest-mips64-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
218c9324bf5SThomas Huth
219c9324bf5SThomas Huthcheck-qtest-mips64el-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
220c2077ec2SThomas Huthcheck-qtest-mips64el-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
221c9324bf5SThomas Huth
2227a6c377fSEric Blakecheck-qtest-moxie-y += tests/boot-serial-test$(EXESUF)
2237244edf2SThomas Huth
224c9324bf5SThomas Huthcheck-qtest-ppc-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
22529531542SThomas Huthcheck-qtest-ppc-y += tests/boot-order-test$(EXESUF)
22629531542SThomas Huthcheck-qtest-ppc-y += tests/prom-env-test$(EXESUF)
22729531542SThomas Huthcheck-qtest-ppc-y += tests/drive_del-test$(EXESUF)
228d2ab58ffSThomas Huthcheck-qtest-ppc-y += tests/boot-serial-test$(EXESUF)
229e1535780SThomas Huthcheck-qtest-ppc-$(CONFIG_M48T59) += tests/m48t59-test$(EXESUF)
23029531542SThomas Huth
2317a6c377fSEric Blakecheck-qtest-ppc64-y += $(check-qtest-ppc-y)
2320d9d4872SDavid Hildenbrandcheck-qtest-ppc64-$(CONFIG_PSERIES) += tests/device-plug-test$(EXESUF)
233e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_POWERNV) += tests/pnv-xscom-test$(EXESUF)
2342656bfd9SJuan Quintelacheck-qtest-ppc64-y += tests/migration-test$(EXESUF)
235e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_PSERIES) += tests/rtas-test$(EXESUF)
236d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
2377c0dfc33SJuan Quintelacheck-qtest-ppc64-$(CONFIG_USB_UHCI) += tests/usb-hcd-uhci-test$(EXESUF)
238c9b688b4SJuan Quintelacheck-qtest-ppc64-$(CONFIG_USB_XHCI_NEC) += tests/usb-hcd-xhci-test$(EXESUF)
239d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
2407f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
241a3780b22SJuan Quintelacheck-qtest-ppc64-$(CONFIG_RTL8139_PCI) += tests/test-filter-redirector$(EXESUF)
242e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
24363baf8bfSIgor Mammedovcheck-qtest-ppc64-y += tests/numa-test$(EXESUF)
2441336e608SJuan Quintelacheck-qtest-ppc64-$(CONFIG_IVSHMEM_DEVICE) += tests/ivshmem-test$(EXESUF)
24573a7d31eSThomas Huthcheck-qtest-ppc64-y += tests/cpu-plug-test$(EXESUF)
24629531542SThomas Huth
247c9324bf5SThomas Huthcheck-qtest-sh4-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
248c9324bf5SThomas Huth
249c9324bf5SThomas Huthcheck-qtest-sh4eb-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
250c9324bf5SThomas Huth
2517a6c377fSEric Blakecheck-qtest-sparc-y += tests/prom-env-test$(EXESUF)
2529c29830cSThomas Huthcheck-qtest-sparc-y += tests/m48t59-test$(EXESUF)
253e74fbf1fSThomas Huthcheck-qtest-sparc-y += tests/boot-serial-test$(EXESUF)
25429531542SThomas Huth
255c9324bf5SThomas Huthcheck-qtest-sparc64-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
2566b591ad6SThomas Huthcheck-qtest-sparc64-y += tests/prom-env-test$(EXESUF)
257e74fbf1fSThomas Huthcheck-qtest-sparc64-y += tests/boot-serial-test$(EXESUF)
25829531542SThomas Huth
25917ff8e18SSteffen Görtzcheck-qtest-arm-y += tests/microbit-test$(EXESUF)
2607a2334f7SCédric Le Goatercheck-qtest-arm-y += tests/m25p80-test$(EXESUF)
261882fac37SDmitry Osipenkocheck-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
26252cb6817SThomas Huthcheck-qtest-arm-y += tests/boot-serial-test$(EXESUF)
263645d3cbeSSu Hangcheck-qtest-arm-y += tests/hexloader-test$(EXESUF)
26429531542SThomas Huth
26563baf8bfSIgor Mammedovcheck-qtest-aarch64-y = tests/numa-test$(EXESUF)
266ec2e988fSWei Huangcheck-qtest-aarch64-y += tests/boot-serial-test$(EXESUF)
267c02b3781SWei Huangcheck-qtest-aarch64-y += tests/migration-test$(EXESUF)
268ab6b6a77SIgor Mammedov# TODO: once aarch64 TCG is fixed on ARM 32 bit host, make test unconditional
269ab6b6a77SIgor Mammedovifneq ($(ARCH),arm)
270ab6b6a77SIgor Mammedovcheck-qtest-aarch64-y += tests/bios-tables-test$(EXESUF)
271ab6b6a77SIgor Mammedovendif
27263baf8bfSIgor Mammedov
2737a6c377fSEric Blakecheck-qtest-microblazeel-y += $(check-qtest-microblaze-y)
27429531542SThomas Huth
2757a6c377fSEric Blakecheck-qtest-xtensaeb-y += $(check-qtest-xtensa-y)
27646e7b706SFam Zheng
277d2ab58ffSThomas Huthcheck-qtest-s390x-y = tests/boot-serial-test$(EXESUF)
278b1b2feacSThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
279ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
280ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
281ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
2822f84a92eSThomas Huthcheck-qtest-s390x-y += tests/drive_del-test$(EXESUF)
2830d9d4872SDavid Hildenbrandcheck-qtest-s390x-y += tests/device-plug-test$(EXESUF)
28406d09a01SPaolo Bonzinicheck-qtest-s390x-y += tests/virtio-ccw-test$(EXESUF)
2857d8b00faSThomas Huthcheck-qtest-s390x-y += tests/cpu-plug-test$(EXESUF)
2865571dc82SThomas Huthcheck-qtest-s390x-y += tests/migration-test$(EXESUF)
287d2ab58ffSThomas Huth
2889c5a87e4SIgor Mammedovcheck-qtest-generic-y += tests/machine-none-test$(EXESUF)
28946e7b706SFam Zhengcheck-qtest-generic-y += tests/qom-test$(EXESUF)
29078f86a2bSThomas Huthcheck-qtest-generic-y += tests/test-hmp$(EXESUF)
29146e7b706SFam Zheng
29246e7b706SFam Zhengqapi-schema += alternate-any.json
29346e7b706SFam Zhengqapi-schema += alternate-array.json
29446e7b706SFam Zhengqapi-schema += alternate-base.json
29546e7b706SFam Zhengqapi-schema += alternate-clash.json
29646e7b706SFam Zhengqapi-schema += alternate-conflict-dict.json
297c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-bool.json
298c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-int.json
29946e7b706SFam Zhengqapi-schema += alternate-conflict-string.json
300fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-bool-string.json
301fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-num-string.json
30246e7b706SFam Zhengqapi-schema += alternate-empty.json
30387adbbffSMarc-André Lureauqapi-schema += alternate-invalid-dict.json
30446e7b706SFam Zhengqapi-schema += alternate-nested.json
30546e7b706SFam Zhengqapi-schema += alternate-unknown.json
30646e7b706SFam Zhengqapi-schema += args-alternate.json
30746e7b706SFam Zhengqapi-schema += args-any.json
30846e7b706SFam Zhengqapi-schema += args-array-empty.json
30946e7b706SFam Zhengqapi-schema += args-array-unknown.json
310c818408eSEric Blakeqapi-schema += args-bad-boxed.json
311c818408eSEric Blakeqapi-schema += args-boxed-anon.json
312c818408eSEric Blakeqapi-schema += args-boxed-empty.json
313c818408eSEric Blakeqapi-schema += args-boxed-string.json
31446e7b706SFam Zhengqapi-schema += args-int.json
31546e7b706SFam Zhengqapi-schema += args-invalid.json
31646e7b706SFam Zhengqapi-schema += args-member-array-bad.json
31746e7b706SFam Zhengqapi-schema += args-member-case.json
31846e7b706SFam Zhengqapi-schema += args-member-unknown.json
31946e7b706SFam Zhengqapi-schema += args-name-clash.json
32046e7b706SFam Zhengqapi-schema += args-union.json
32146e7b706SFam Zhengqapi-schema += args-unknown.json
32246e7b706SFam Zhengqapi-schema += bad-base.json
32346e7b706SFam Zhengqapi-schema += bad-data.json
32446e7b706SFam Zhengqapi-schema += bad-ident.json
325967c8851SMarc-André Lureauqapi-schema += bad-if.json
326967c8851SMarc-André Lureauqapi-schema += bad-if-empty.json
327967c8851SMarc-André Lureauqapi-schema += bad-if-empty-list.json
328967c8851SMarc-André Lureauqapi-schema += bad-if-list.json
32946e7b706SFam Zhengqapi-schema += bad-type-bool.json
33046e7b706SFam Zhengqapi-schema += bad-type-dict.json
33146e7b706SFam Zhengqapi-schema += bad-type-int.json
33246e7b706SFam Zhengqapi-schema += base-cycle-direct.json
33346e7b706SFam Zhengqapi-schema += base-cycle-indirect.json
33446e7b706SFam Zhengqapi-schema += command-int.json
33546e7b706SFam Zhengqapi-schema += comments.json
336f641d06aSMarkus Armbrusterqapi-schema += doc-bad-alternate-member.json
337bdc001caSMarkus Armbrusterqapi-schema += doc-bad-command-arg.json
338cfa438ffSMarkus Armbrusterqapi-schema += doc-bad-section.json
3393313b612SMarc-André Lureauqapi-schema += doc-bad-symbol.json
340f641d06aSMarkus Armbrusterqapi-schema += doc-bad-union-member.json
3412028be8eSMarkus Armbrusterqapi-schema += doc-before-include.json
3422028be8eSMarkus Armbrusterqapi-schema += doc-before-pragma.json
3433313b612SMarc-André Lureauqapi-schema += doc-duplicated-arg.json
3443313b612SMarc-André Lureauqapi-schema += doc-duplicated-return.json
3453313b612SMarc-André Lureauqapi-schema += doc-duplicated-since.json
3463313b612SMarc-André Lureauqapi-schema += doc-empty-arg.json
3473313b612SMarc-André Lureauqapi-schema += doc-empty-section.json
3483313b612SMarc-André Lureauqapi-schema += doc-empty-symbol.json
34980d1f2e4SMarkus Armbrusterqapi-schema += doc-good.json
3503313b612SMarc-André Lureauqapi-schema += doc-interleaved-section.json
3513313b612SMarc-André Lureauqapi-schema += doc-invalid-end.json
3523313b612SMarc-André Lureauqapi-schema += doc-invalid-end2.json
3533313b612SMarc-André Lureauqapi-schema += doc-invalid-return.json
3543313b612SMarc-André Lureauqapi-schema += doc-invalid-section.json
3553313b612SMarc-André Lureauqapi-schema += doc-invalid-start.json
3563313b612SMarc-André Lureauqapi-schema += doc-missing-colon.json
3573313b612SMarc-André Lureauqapi-schema += doc-missing-expr.json
3583313b612SMarc-André Lureauqapi-schema += doc-missing-space.json
359cfa438ffSMarkus Armbrusterqapi-schema += doc-missing.json
3602028be8eSMarkus Armbrusterqapi-schema += doc-no-symbol.json
36146e7b706SFam Zhengqapi-schema += double-data.json
36246e7b706SFam Zhengqapi-schema += double-type.json
36346e7b706SFam Zhengqapi-schema += duplicate-key.json
36446e7b706SFam Zhengqapi-schema += empty.json
365ea738b21SMarc-André Lureauqapi-schema += enum-bad-member.json
36646e7b706SFam Zhengqapi-schema += enum-bad-name.json
36746e7b706SFam Zhengqapi-schema += enum-bad-prefix.json
36846e7b706SFam Zhengqapi-schema += enum-clash-member.json
369ea738b21SMarc-André Lureauqapi-schema += enum-dict-member-unknown.json
3706cc32b0eSMarc-André Lureauqapi-schema += enum-if-invalid.json
37146e7b706SFam Zhengqapi-schema += enum-int-member.json
37246e7b706SFam Zhengqapi-schema += enum-member-case.json
37346e7b706SFam Zhengqapi-schema += enum-missing-data.json
37446e7b706SFam Zhengqapi-schema += enum-wrong-data.json
37546e7b706SFam Zhengqapi-schema += escape-outside-string.json
37646e7b706SFam Zhengqapi-schema += escape-too-big.json
37746e7b706SFam Zhengqapi-schema += escape-too-short.json
378c818408eSEric Blakeqapi-schema += event-boxed-empty.json
37946e7b706SFam Zhengqapi-schema += event-case.json
38087adbbffSMarc-André Lureauqapi-schema += event-member-invalid-dict.json
38146e7b706SFam Zhengqapi-schema += event-nest-struct.json
382a00af404SKevin Wolfqapi-schema += features-bad-type.json
383a00af404SKevin Wolfqapi-schema += features-duplicate-name.json
384a00af404SKevin Wolfqapi-schema += features-missing-name.json
385a00af404SKevin Wolfqapi-schema += features-name-bad-type.json
386a00af404SKevin Wolfqapi-schema += features-no-list.json
387a00af404SKevin Wolfqapi-schema += features-unknown-key.json
38846e7b706SFam Zhengqapi-schema += flat-union-array-branch.json
38946e7b706SFam Zhengqapi-schema += flat-union-bad-base.json
39046e7b706SFam Zhengqapi-schema += flat-union-bad-discriminator.json
39146e7b706SFam Zhengqapi-schema += flat-union-base-any.json
39246e7b706SFam Zhengqapi-schema += flat-union-base-union.json
39346e7b706SFam Zhengqapi-schema += flat-union-clash-member.json
39446e7b706SFam Zhengqapi-schema += flat-union-empty.json
39546e7b706SFam Zhengqapi-schema += flat-union-inline.json
39687adbbffSMarc-André Lureauqapi-schema += flat-union-inline-invalid-dict.json
39746e7b706SFam Zhengqapi-schema += flat-union-int-branch.json
39846e7b706SFam Zhengqapi-schema += flat-union-invalid-branch-key.json
39946e7b706SFam Zhengqapi-schema += flat-union-invalid-discriminator.json
400ccadd6bcSMarc-André Lureauqapi-schema += flat-union-invalid-if-discriminator.json
40146e7b706SFam Zhengqapi-schema += flat-union-no-base.json
40246e7b706SFam Zhengqapi-schema += flat-union-optional-discriminator.json
40346e7b706SFam Zhengqapi-schema += flat-union-string-discriminator.json
40446e7b706SFam Zhengqapi-schema += funny-char.json
40546e7b706SFam Zhengqapi-schema += ident-with-escape.json
40646e7b706SFam Zhengqapi-schema += include-before-err.json
40746e7b706SFam Zhengqapi-schema += include-cycle.json
408bc52d03fSMarkus Armbrusterqapi-schema += include-extra-junk.json
40946e7b706SFam Zhengqapi-schema += include-format-err.json
41046e7b706SFam Zhengqapi-schema += include-nested-err.json
41146e7b706SFam Zhengqapi-schema += include-no-file.json
41246e7b706SFam Zhengqapi-schema += include-non-file.json
41346e7b706SFam Zhengqapi-schema += include-repetition.json
41446e7b706SFam Zhengqapi-schema += include-self-cycle.json
41546e7b706SFam Zhengqapi-schema += include-simple.json
41646e7b706SFam Zhengqapi-schema += indented-expr.json
41746e7b706SFam Zhengqapi-schema += leading-comma-list.json
41846e7b706SFam Zhengqapi-schema += leading-comma-object.json
41946e7b706SFam Zhengqapi-schema += missing-colon.json
42046e7b706SFam Zhengqapi-schema += missing-comma-list.json
42146e7b706SFam Zhengqapi-schema += missing-comma-object.json
42246e7b706SFam Zhengqapi-schema += missing-type.json
42346e7b706SFam Zhengqapi-schema += nested-struct-data.json
42487adbbffSMarc-André Lureauqapi-schema += nested-struct-data-invalid-dict.json
42546e7b706SFam Zhengqapi-schema += non-objects.json
4261a1b11dcSPeter Xuqapi-schema += oob-test.json
4277b13f2c2SIgor Mammedovqapi-schema += allow-preconfig-test.json
428bc52d03fSMarkus Armbrusterqapi-schema += pragma-doc-required-crap.json
429bc52d03fSMarkus Armbrusterqapi-schema += pragma-extra-junk.json
4302cfbae3cSMarkus Armbrusterqapi-schema += pragma-name-case-whitelist-crap.json
431bc52d03fSMarkus Armbrusterqapi-schema += pragma-non-dict.json
4321554a8faSMarkus Armbrusterqapi-schema += pragma-returns-whitelist-crap.json
43346e7b706SFam Zhengqapi-schema += qapi-schema-test.json
43446e7b706SFam Zhengqapi-schema += quoted-structural-chars.json
43546e7b706SFam Zhengqapi-schema += redefined-builtin.json
43646e7b706SFam Zhengqapi-schema += redefined-command.json
43746e7b706SFam Zhengqapi-schema += redefined-event.json
43846e7b706SFam Zhengqapi-schema += redefined-type.json
43946e7b706SFam Zhengqapi-schema += reserved-command-q.json
44046e7b706SFam Zhengqapi-schema += reserved-enum-q.json
44146e7b706SFam Zhengqapi-schema += reserved-member-has.json
44246e7b706SFam Zhengqapi-schema += reserved-member-q.json
44346e7b706SFam Zhengqapi-schema += reserved-member-u.json
44446e7b706SFam Zhengqapi-schema += reserved-member-underscore.json
44546e7b706SFam Zhengqapi-schema += reserved-type-kind.json
44646e7b706SFam Zhengqapi-schema += reserved-type-list.json
44746e7b706SFam Zhengqapi-schema += returns-alternate.json
44846e7b706SFam Zhengqapi-schema += returns-array-bad.json
44946e7b706SFam Zhengqapi-schema += returns-dict.json
45046e7b706SFam Zhengqapi-schema += returns-unknown.json
45146e7b706SFam Zhengqapi-schema += returns-whitelist.json
45246e7b706SFam Zhengqapi-schema += struct-base-clash-deep.json
45346e7b706SFam Zhengqapi-schema += struct-base-clash.json
45446e7b706SFam Zhengqapi-schema += struct-data-invalid.json
45587adbbffSMarc-André Lureauqapi-schema += struct-member-invalid-dict.json
45646e7b706SFam Zhengqapi-schema += struct-member-invalid.json
45746e7b706SFam Zhengqapi-schema += trailing-comma-list.json
45846e7b706SFam Zhengqapi-schema += trailing-comma-object.json
45946e7b706SFam Zhengqapi-schema += type-bypass-bad-gen.json
46046e7b706SFam Zhengqapi-schema += unclosed-list.json
46146e7b706SFam Zhengqapi-schema += unclosed-object.json
46246e7b706SFam Zhengqapi-schema += unclosed-string.json
46346e7b706SFam Zhengqapi-schema += unicode-str.json
464707fb2d3SMarkus Armbrusterqapi-schema += union-base-empty.json
46546e7b706SFam Zhengqapi-schema += union-base-no-discriminator.json
46646e7b706SFam Zhengqapi-schema += union-branch-case.json
46787adbbffSMarc-André Lureauqapi-schema += union-branch-invalid-dict.json
46846e7b706SFam Zhengqapi-schema += union-clash-branches.json
46946e7b706SFam Zhengqapi-schema += union-empty.json
47046e7b706SFam Zhengqapi-schema += union-invalid-base.json
47146e7b706SFam Zhengqapi-schema += union-optional-branch.json
47246e7b706SFam Zhengqapi-schema += union-unknown.json
47346e7b706SFam Zhengqapi-schema += unknown-escape.json
47446e7b706SFam Zhengqapi-schema += unknown-expr-key.json
4753313b612SMarc-André Lureau
4763313b612SMarc-André Lureau
47746e7b706SFam Zhengcheck-qapi-schema-y := $(addprefix tests/qapi-schema/, $(qapi-schema))
47846e7b706SFam Zheng
4793dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-types.h
4803dff199cSLaurent Viviergenerated-files-y += tests/include/test-qapi-types-sub-module.h
4813dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-types-sub-sub-module.h
4823dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-visit.h
4833dff199cSLaurent Viviergenerated-files-y += tests/include/test-qapi-visit-sub-module.h
4843dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-visit-sub-sub-module.h
4853dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-commands.h
4863dff199cSLaurent Viviergenerated-files-y += tests/include/test-qapi-commands-sub-module.h
4873dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-commands-sub-sub-module.h
4883dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-events.h
4893dff199cSLaurent Viviergenerated-files-y += tests/include/test-qapi-events-sub-module.h
4903dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-events-sub-sub-module.h
4913dff199cSLaurent Viviergenerated-files-y += tests/test-qapi-introspect.h
49246e7b706SFam Zheng
49346e7b706SFam ZhengQEMU_CFLAGS += -I$(SRC_PATH)/tests
49446e7b706SFam Zheng
49546e7b706SFam Zheng
49646e7b706SFam Zheng# Deps that are common to various different sets of tests below
497ebedb37cSPaolo Bonzinitest-util-obj-y = libqemuutil.a
49846e7b706SFam Zhengtest-qom-obj-y = $(qom-obj-y) $(test-util-obj-y)
499709395f8SMarkus Armbrustertest-qapi-obj-y = tests/test-qapi-types.o \
500709395f8SMarkus Armbruster	tests/include/test-qapi-types-sub-module.o \
501709395f8SMarkus Armbruster	tests/test-qapi-types-sub-sub-module.o \
502709395f8SMarkus Armbruster	tests/test-qapi-visit.o \
503709395f8SMarkus Armbruster	tests/include/test-qapi-visit-sub-module.o \
504709395f8SMarkus Armbruster	tests/test-qapi-visit-sub-sub-module.o \
505a9529100SMarkus Armbruster	tests/test-qapi-introspect.o \
50646e7b706SFam Zheng	$(test-qom-obj-y)
50729de2804SLaurent Vivierbenchmark-crypto-obj-$(CONFIG_BLOCK) = $(authz-obj-y) $(crypto-obj-y) $(test-qom-obj-y)
50829de2804SLaurent Viviertest-crypto-obj-$(CONFIG_BLOCK) = $(authz-obj-y) $(crypto-obj-y) $(test-qom-obj-y)
50929de2804SLaurent Viviertest-io-obj-$(CONFIG_BLOCK) = $(io-obj-y) $(test-crypto-obj-y)
51029de2804SLaurent Viviertest-authz-obj-$(CONFIG_BLOCK) = $(test-qom-obj-y) $(authz-obj-y)
51129de2804SLaurent Viviertest-block-obj-$(CONFIG_BLOCK) = $(block-obj-y) $(test-io-obj-y) tests/iothread.o
51246e7b706SFam Zheng
51301b2ffceSMarc-André Lureautests/check-qnum$(EXESUF): tests/check-qnum.o $(test-util-obj-y)
51446e7b706SFam Zhengtests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y)
51546e7b706SFam Zhengtests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y)
5160bcc8e5bSMarkus Armbrustertests/check-block-qdict$(EXESUF): tests/check-block-qdict.o $(test-util-obj-y)
51746e7b706SFam Zhengtests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y)
51846e7b706SFam Zhengtests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y)
5191b76e838SMax Reitztests/check-qobject$(EXESUF): tests/check-qobject.o $(test-util-obj-y)
52046e7b706SFam Zhengtests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y)
521382176b4SMarc-André Lureautests/check-qlit$(EXESUF): tests/check-qlit.o $(test-util-obj-y)
52246e7b706SFam Zhengtests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y)
52346e7b706SFam Zhengtests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y)
524ea3af47dSMarc-André Lureau
525c2b38b27SPaolo Bonzinitests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y)
52646e7b706SFam Zhengtests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y)
52746e7b706SFam Zhengtests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y)
5280c330a73SPaolo Bonzinitests/test-aio-multithread$(EXESUF): tests/test-aio-multithread.o $(test-block-obj-y)
52946e7b706SFam Zhengtests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y)
530881cfd17SKevin Wolftests/test-bdrv-drain$(EXESUF): tests/test-bdrv-drain.o $(test-block-obj-y) $(test-util-obj-y)
5312dbfadf6SVladimir Sementsov-Ogievskiytests/test-bdrv-graph-mod$(EXESUF): tests/test-bdrv-graph-mod.o $(test-block-obj-y) $(test-util-obj-y)
5329ef8112aSAlberto Garciatests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y)
53346e7b706SFam Zhengtests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y)
534ad0df3e0SKevin Wolftests/test-block-backend$(EXESUF): tests/test-block-backend.o $(test-block-obj-y) $(test-util-obj-y)
5354720cbeeSKevin Wolftests/test-block-iothread$(EXESUF): tests/test-block-iothread.o $(test-block-obj-y) $(test-util-obj-y)
536aef96d7dSFam Zhengtests/test-image-locking$(EXESUF): tests/test-image-locking.o $(test-block-obj-y) $(test-util-obj-y)
53746e7b706SFam Zhengtests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y)
53846e7b706SFam Zhengtests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
539a3b52535SVladimir Sementsov-Ogievskiytests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y)
54046e7b706SFam Zhengtests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
541aa3544c3SJuan Quintelatests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y)
54205cb8ed5SAlistair Francistests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o $(test-util-obj-y)
54346e7b706SFam Zhengtests/test-int128$(EXESUF): tests/test-int128.o
54446e7b706SFam Zhengtests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
54546e7b706SFam Zhengtests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
54690487e45SEmilio G. Cotatests/test-rcu-simpleq$(EXESUF): tests/test-rcu-simpleq.o $(test-util-obj-y)
547dbf8862aSEmilio G. Cotatests/test-rcu-tailq$(EXESUF): tests/test-rcu-tailq.o $(test-util-obj-y)
548ff9249b7SEmilio G. Cotatests/test-qdist$(EXESUF): tests/test-qdist.o $(test-util-obj-y)
5491a95404fSEmilio G. Cotatests/test-qht$(EXESUF): tests/test-qht.o $(test-util-obj-y)
550896a9ee9SEmilio G. Cotatests/test-qht-par$(EXESUF): tests/test-qht-par.o tests/qht-bench$(EXESUF) $(test-util-obj-y)
551515864a0SEmilio G. Cotatests/qht-bench$(EXESUF): tests/qht-bench.o $(test-util-obj-y)
552efad6682SRichard Hendersontests/test-bufferiszero$(EXESUF): tests/test-bufferiszero.o $(test-util-obj-y)
553070e3edcSEmilio G. Cotatests/atomic_add-bench$(EXESUF): tests/atomic_add-bench.o $(test-util-obj-y)
55482fdfcbeSEmilio G. Cotatests/atomic64-bench$(EXESUF): tests/atomic64-bench.o $(test-util-obj-y)
55546e7b706SFam Zheng
5563ac1f813SEmilio G. Cotatests/fp/%:
5573ac1f813SEmilio G. Cota	$(MAKE) -C $(dir $@) $(notdir $@)
5583ac1f813SEmilio G. Cota
55946e7b706SFam Zhengtests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \
56046e7b706SFam Zheng	hw/core/qdev.o hw/core/qdev-properties.o hw/core/hotplug.o\
56146e7b706SFam Zheng	hw/core/bus.o \
56246e7b706SFam Zheng	hw/core/irq.o \
56346e7b706SFam Zheng	hw/core/fw-path-provider.o \
5642f7b92a0SPaolo Bonzini	hw/core/reset.o \
56546e7b706SFam Zheng	$(test-qapi-obj-y)
56646e7b706SFam Zhengtests/test-vmstate$(EXESUF): tests/test-vmstate.o \
567576d1abcSJuan Quintela	migration/vmstate.o migration/vmstate-types.o migration/qemu-file.o \
56846e7b706SFam Zheng        migration/qemu-file-channel.o migration/qjson.o \
56946e7b706SFam Zheng	$(test-io-obj-y)
570c2b38b27SPaolo Bonzinitests/test-timed-average$(EXESUF): tests/test-timed-average.o $(test-util-obj-y)
571ebedb37cSPaolo Bonzinitests/test-base64$(EXESUF): tests/test-base64.o $(test-util-obj-y)
5729ee24e98SPaolo Bonzinitests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o
57346e7b706SFam Zheng
57446e7b706SFam Zhengtests/test-logging$(EXESUF): tests/test-logging.o $(test-util-obj-y)
57546e7b706SFam Zheng
576b3110466SChanglong Xietests/test-replication$(EXESUF): tests/test-replication.o $(test-util-obj-y) \
577b3110466SChanglong Xie	$(test-block-obj-y)
578b3110466SChanglong Xie
579fb0bc835SMarkus Armbrustertests/test-qapi-types.c tests/test-qapi-types.h \
580709395f8SMarkus Armbrustertests/include/test-qapi-types-sub-module.c \
581709395f8SMarkus Armbrustertests/include/test-qapi-types-sub-module.h \
582709395f8SMarkus Armbrustertests/test-qapi-types-sub-sub-module.c \
583709395f8SMarkus Armbrustertests/test-qapi-types-sub-sub-module.h \
584fb0bc835SMarkus Armbrustertests/test-qapi-visit.c tests/test-qapi-visit.h \
585709395f8SMarkus Armbrustertests/include/test-qapi-visit-sub-module.c \
586709395f8SMarkus Armbrustertests/include/test-qapi-visit-sub-module.h \
587709395f8SMarkus Armbrustertests/test-qapi-visit-sub-sub-module.c \
588709395f8SMarkus Armbrustertests/test-qapi-visit-sub-sub-module.h \
589eb815e24SMarkus Armbrustertests/test-qapi-commands.h tests/test-qapi-commands.c \
590709395f8SMarkus Armbrustertests/include/test-qapi-commands-sub-module.h \
591709395f8SMarkus Armbrustertests/include/test-qapi-commands-sub-module.c \
592709395f8SMarkus Armbrustertests/test-qapi-commands-sub-sub-module.h \
593709395f8SMarkus Armbrustertests/test-qapi-commands-sub-sub-module.c \
594eb815e24SMarkus Armbrustertests/test-qapi-events.c tests/test-qapi-events.h \
595709395f8SMarkus Armbrustertests/include/test-qapi-events-sub-module.c \
596709395f8SMarkus Armbrustertests/include/test-qapi-events-sub-module.h \
597709395f8SMarkus Armbrustertests/test-qapi-events-sub-sub-module.c \
598709395f8SMarkus Armbrustertests/test-qapi-events-sub-sub-module.h \
599eb815e24SMarkus Armbrustertests/test-qapi-introspect.c tests/test-qapi-introspect.h: \
600fb0bc835SMarkus Armbrustertests/test-qapi-gen-timestamp ;
601709395f8SMarkus Armbrustertests/test-qapi-gen-timestamp: \
602709395f8SMarkus Armbruster		$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json \
603709395f8SMarkus Armbruster		$(SRC_PATH)/tests/qapi-schema/include/sub-module.json \
604709395f8SMarkus Armbruster		$(SRC_PATH)/tests/qapi-schema/sub-sub-module.json \
605709395f8SMarkus Armbruster		$(qapi-py)
6060d6b93deSMatthias Maier	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
607fb0bc835SMarkus Armbruster		-o tests -p "test-" $<, \
608fb0bc835SMarkus Armbruster		"GEN","$(@:%-timestamp=%)")
609fb0bc835SMarkus Armbruster	@>$@
61046e7b706SFam Zheng
611fb0bc835SMarkus Armbrustertests/qapi-schema/doc-good.test.texi: $(SRC_PATH)/tests/qapi-schema/doc-good.json $(qapi-py)
6120d6b93deSMatthias Maier	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
613fb0bc835SMarkus Armbruster		-o tests/qapi-schema -p "doc-good-" $<, \
614fb0bc835SMarkus Armbruster		"GEN","$@")
615fb0bc835SMarkus Armbruster	@mv tests/qapi-schema/doc-good-qapi-doc.texi $@
616fb0bc835SMarkus Armbruster	@rm -f tests/qapi-schema/doc-good-qapi-*.[ch] tests/qapi-schema/doc-good-qmp-*.[ch]
61780d1f2e4SMarkus Armbruster
61846e7b706SFam Zhengtests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y)
61946e7b706SFam Zhengtests/test-string-input-visitor$(EXESUF): tests/test-string-input-visitor.o $(test-qapi-obj-y)
620a9529100SMarkus Armbrustertests/test-qmp-event$(EXESUF): tests/test-qmp-event.o $(test-qapi-obj-y) tests/test-qapi-events.o
621b3db211fSDaniel P. Berrangetests/test-qobject-output-visitor$(EXESUF): tests/test-qobject-output-visitor.o $(test-qapi-obj-y)
622a15fcc3cSEric Blaketests/test-clone-visitor$(EXESUF): tests/test-clone-visitor.o $(test-qapi-obj-y)
623b3db211fSDaniel P. Berrangetests/test-qobject-input-visitor$(EXESUF): tests/test-qobject-input-visitor.o $(test-qapi-obj-y)
624eb815e24SMarkus Armbrustertests/test-qmp-cmds$(EXESUF): tests/test-qmp-cmds.o tests/test-qapi-commands.o $(test-qapi-obj-y)
62546e7b706SFam Zhengtests/test-visitor-serialization$(EXESUF): tests/test-visitor-serialization.o $(test-qapi-obj-y)
62646e7b706SFam Zhengtests/test-opts-visitor$(EXESUF): tests/test-opts-visitor.o $(test-qapi-obj-y)
62746e7b706SFam Zheng
628f539fbe3SJose Ricardo Zivianitests/test-shift128$(EXESUF): tests/test-shift128.o $(test-util-obj-y)
62946e7b706SFam Zhengtests/test-mul64$(EXESUF): tests/test-mul64.o $(test-util-obj-y)
63046e7b706SFam Zhengtests/test-bitops$(EXESUF): tests/test-bitops.o $(test-util-obj-y)
631c3f8962fSAlex Bennéetests/test-bitcnt$(EXESUF): tests/test-bitcnt.o $(test-util-obj-y)
63246e7b706SFam Zhengtests/test-crypto-hash$(EXESUF): tests/test-crypto-hash.o $(test-crypto-obj-y)
6330128cd29SLongpeng(Mike)tests/benchmark-crypto-hash$(EXESUF): tests/benchmark-crypto-hash.o $(test-crypto-obj-y)
6344fd460bfSLongpeng(Mike)tests/test-crypto-hmac$(EXESUF): tests/test-crypto-hmac.o $(test-crypto-obj-y)
635c7a9af4bSLongpeng(Mike)tests/benchmark-crypto-hmac$(EXESUF): tests/benchmark-crypto-hmac.o $(test-crypto-obj-y)
63646e7b706SFam Zhengtests/test-crypto-cipher$(EXESUF): tests/test-crypto-cipher.o $(test-crypto-obj-y)
6371efd9d5eSLongpeng(Mike)tests/benchmark-crypto-cipher$(EXESUF): tests/benchmark-crypto-cipher.o $(test-crypto-obj-y)
63846e7b706SFam Zhengtests/test-crypto-secret$(EXESUF): tests/test-crypto-secret.o $(test-crypto-obj-y)
63946e7b706SFam Zhengtests/test-crypto-xts$(EXESUF): tests/test-crypto-xts.o $(test-crypto-obj-y)
64046e7b706SFam Zheng
64146e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-cflags := $(TASN1_CFLAGS)
64246e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-libs := $(TASN1_LIBS)
64346e7b706SFam Zhengtests/pkix_asn1_tab.o-cflags := $(TASN1_CFLAGS)
64446e7b706SFam Zheng
64546e7b706SFam Zhengtests/test-crypto-tlscredsx509.o-cflags := $(TASN1_CFLAGS)
64646e7b706SFam Zhengtests/test-crypto-tlscredsx509$(EXESUF): tests/test-crypto-tlscredsx509.o \
64746e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y)
64846e7b706SFam Zheng
64946e7b706SFam Zhengtests/test-crypto-tlssession.o-cflags := $(TASN1_CFLAGS)
65046e7b706SFam Zhengtests/test-crypto-tlssession$(EXESUF): tests/test-crypto-tlssession.o \
651e1a6dc91SRichard W.M. Jones	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \
652e1a6dc91SRichard W.M. Jones	tests/crypto-tls-psk-helpers.o \
653e1a6dc91SRichard W.M. Jones        $(test-crypto-obj-y)
65490e33dfeSDaniel P. Berrangétests/test-util-filemonitor$(EXESUF): tests/test-util-filemonitor.o \
65590e33dfeSDaniel P. Berrangé	$(test-util-obj-y)
65658dc31f1SDaniel P. Berrangetests/test-util-sockets$(EXESUF): tests/test-util-sockets.o \
65758dc31f1SDaniel P. Berrange	tests/socket-helpers.o $(test-util-obj-y)
658fb5c4ebcSDaniel P. Berrangétests/test-authz-simple$(EXESUF): tests/test-authz-simple.o $(test-authz-obj-y)
659c8c99887SDaniel P. Berrangetests/test-authz-list$(EXESUF): tests/test-authz-list.o $(test-authz-obj-y)
66055d86984SDaniel P. Berrangétests/test-authz-listfile$(EXESUF): tests/test-authz-listfile.o $(test-authz-obj-y)
6618953caf3SDaniel P. Berrangetests/test-authz-pam$(EXESUF): tests/test-authz-pam.o $(test-authz-obj-y)
66246e7b706SFam Zhengtests/test-io-task$(EXESUF): tests/test-io-task.o $(test-io-obj-y)
66346e7b706SFam Zhengtests/test-io-channel-socket$(EXESUF): tests/test-io-channel-socket.o \
6649b589ffbSDaniel P. Berrange        tests/io-channel-helpers.o tests/socket-helpers.o $(test-io-obj-y)
665b21373d0SStefan Bergertests/tpm-crb-swtpm-test$(EXESUF): tests/tpm-crb-swtpm-test.o tests/tpm-emu.o \
6662b4ccb87SStefan Berger	tests/tpm-util.o tests/tpm-tests.o $(test-io-obj-y)
6670e6ca954SStefan Bergertests/tpm-crb-test$(EXESUF): tests/tpm-crb-test.o tests/tpm-emu.o $(test-io-obj-y)
66870663851SStefan Bergertests/tpm-tis-swtpm-test$(EXESUF): tests/tpm-tis-swtpm-test.o tests/tpm-emu.o \
66970663851SStefan Berger	tests/tpm-util.o tests/tpm-tests.o $(test-io-obj-y)
670adb0e917SStefan Bergertests/tpm-tis-test$(EXESUF): tests/tpm-tis-test.o tests/tpm-emu.o $(test-io-obj-y)
67146e7b706SFam Zhengtests/test-io-channel-file$(EXESUF): tests/test-io-channel-file.o \
67246e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
67346e7b706SFam Zhengtests/test-io-channel-tls$(EXESUF): tests/test-io-channel-tls.o \
67446e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \
67546e7b706SFam Zheng	tests/io-channel-helpers.o $(test-io-obj-y)
67646e7b706SFam Zhengtests/test-io-channel-command$(EXESUF): tests/test-io-channel-command.o \
67746e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
67846e7b706SFam Zhengtests/test-io-channel-buffer$(EXESUF): tests/test-io-channel-buffer.o \
67946e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
68046e7b706SFam Zhengtests/test-crypto-pbkdf$(EXESUF): tests/test-crypto-pbkdf.o $(test-crypto-obj-y)
68146e7b706SFam Zhengtests/test-crypto-ivgen$(EXESUF): tests/test-crypto-ivgen.o $(test-crypto-obj-y)
68246e7b706SFam Zhengtests/test-crypto-afsplit$(EXESUF): tests/test-crypto-afsplit.o $(test-crypto-obj-y)
68346e7b706SFam Zhengtests/test-crypto-block$(EXESUF): tests/test-crypto-block.o $(test-crypto-obj-y)
68446e7b706SFam Zheng
685fc281c80SEmanuele Giuseppe Espositolibqgraph-obj-y = tests/libqos/qgraph.o
686fc281c80SEmanuele Giuseppe Esposito
687fc281c80SEmanuele Giuseppe Espositolibqos-obj-y = $(libqgraph-obj-y) tests/libqos/pci.o tests/libqos/fw_cfg.o
6885cb8f0dbSPaolo Bonzinilibqos-obj-y += tests/libqos/malloc.o
6898130dbcbSPaolo Bonzinilibqos-obj-y += tests/libqos/libqos.o
6908d6ef7c9SLaurent Vivierlibqos-spapr-obj-y = $(libqos-obj-y) tests/libqos/malloc-spapr.o
6918d6ef7c9SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/libqos-spapr.o
692eeddd59fSLaurent Vivierlibqos-spapr-obj-y += tests/libqos/rtas.o
693cf716b31SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/pci-spapr.o
69446e7b706SFam Zhenglibqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o
69546e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/malloc-pc.o tests/libqos/libqos-pc.o
69646e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/ahci.o
697aa9026fdSLaurent Vivierlibqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/usb.o
698fc281c80SEmanuele Giuseppe Esposito
69985af0057SEmanuele Giuseppe Esposito# Devices
70085af0057SEmanuele Giuseppe Espositoqos-test-obj-y = tests/qos-test.o $(libqgraph-obj-y)
701b8782d2aSEmanuele Giuseppe Espositoqos-test-obj-y += $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
702a4cc719bSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/e1000e.o
7038130dbcbSPaolo Bonziniqos-test-obj-y += tests/libqos/i2c.o
7048130dbcbSPaolo Bonziniqos-test-obj-y += tests/libqos/i2c-imx.o
70593c3fe2aSPaolo Bonziniqos-test-obj-y += tests/libqos/i2c-omap.o
706a0a9ba66SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/sdhci.o
7070793a889SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/tpci200.o
70819e3d979SPaolo Bonziniqos-test-obj-y += tests/libqos/virtio.o
7099d447257SEmanuele Giuseppe Espositoqos-test-obj-$(CONFIG_VIRTFS) += tests/libqos/virtio-9p.o
71029241067SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-balloon.o
711a3713493SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-blk.o
71219e3d979SPaolo Bonziniqos-test-obj-y += tests/libqos/virtio-mmio.o
713583349d1SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-net.o
71419e3d979SPaolo Bonziniqos-test-obj-y += tests/libqos/virtio-pci.o
715d3d400d3SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-rng.o
7168f41a3a8SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-scsi.o
717b3e7dc87SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-serial.o
71885af0057SEmanuele Giuseppe Esposito
71946113f88SEmanuele Giuseppe Esposito# Machines
720555299cbSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/aarch64-xlnx-zcu102-machine.o
721751a7a5dSPaolo Bonziniqos-test-obj-y += tests/libqos/arm-imx25-pdk-machine.o
72248963982SPaolo Bonziniqos-test-obj-y += tests/libqos/arm-n800-machine.o
723ad60d6d4SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-raspi2-machine.o
724aea9ac51SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-sabrelite-machine.o
725c9599c9aSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-smdkc210-machine.o
726d18d2b57SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-virt-machine.o
7272013199dSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-xilinx-zynq-a9-machine.o
7287985b582SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/ppc64_pseries-machine.o
72946113f88SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/x86_64_pc-machine.o
73046113f88SEmanuele Giuseppe Esposito
731757c6eacSEmanuele Giuseppe Esposito# Tests
73286dc943fSEmanuele Giuseppe Espositoqos-test-obj-y += tests/ac97-test.o
7338130dbcbSPaolo Bonziniqos-test-obj-y += tests/ds1338-test.o
734a138f266SEmanuele Giuseppe Espositoqos-test-obj-y += tests/e1000-test.o
735b026393cSEmanuele Giuseppe Espositoqos-test-obj-y += tests/e1000e-test.o
7360b477302SEmanuele Giuseppe Espositoqos-test-obj-y += tests/eepro100-test.o
7377f4090a5SEmanuele Giuseppe Espositoqos-test-obj-y += tests/es1370-test.o
73831692b2eSEmanuele Giuseppe Espositoqos-test-obj-y += tests/ipoctal232-test.o
739469bb49bSPaolo Bonziniqos-test-obj-y += tests/megasas-test.o
740941e3317SEmanuele Giuseppe Espositoqos-test-obj-y += tests/ne2000-test.o
7413157ed33SEmanuele Giuseppe Espositoqos-test-obj-y += tests/nvme-test.o
74293c3fe2aSPaolo Bonziniqos-test-obj-y += tests/pca9552-test.o
743db1f2668SPaolo Bonziniqos-test-obj-y += tests/pci-test.o
74496900e16SEmanuele Giuseppe Espositoqos-test-obj-y += tests/pcnet-test.o
745757c6eacSEmanuele Giuseppe Espositoqos-test-obj-y += tests/sdhci-test.o
746dca06306SEmanuele Giuseppe Espositoqos-test-obj-y += tests/spapr-phb-test.o
74793c3fe2aSPaolo Bonziniqos-test-obj-y += tests/tmp105-test.o
748fb7e0b48SEmanuele Giuseppe Espositoqos-test-obj-y += tests/usb-hcd-ohci-test.o $(libqos-usb-obj-y)
749a3ebd6e0SPaolo Bonziniqos-test-obj-$(CONFIG_VHOST_NET_USER) += tests/vhost-user-test.o $(chardev-obj-y) $(test-io-obj-y)
75050d982e7SPaolo Bonziniqos-test-obj-y += tests/virtio-test.o
751dfbe8b43SEmanuele Giuseppe Espositoqos-test-obj-$(CONFIG_VIRTFS) += tests/virtio-9p-test.o
7525cb8f0dbSPaolo Bonziniqos-test-obj-y += tests/virtio-blk-test.o
7536ae333f9SEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-net-test.o
754a25f56aeSEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-rng-test.o
7554e200798SEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-scsi-test.o
7561657291aSEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-serial-test.o
75753bfb429SEmanuele Giuseppe Espositoqos-test-obj-y += tests/vmxnet3-test.o
758757c6eacSEmanuele Giuseppe Esposito
759fc281c80SEmanuele Giuseppe Espositocheck-unit-y += tests/test-qgraph$(EXESUF)
760fc281c80SEmanuele Giuseppe Espositotests/test-qgraph$(EXESUF): tests/test-qgraph.o $(libqgraph-obj-y)
761fc281c80SEmanuele Giuseppe Esposito
762fc281c80SEmanuele Giuseppe Espositocheck-qtest-generic-y += tests/qos-test$(EXESUF)
76385af0057SEmanuele Giuseppe Espositotests/qos-test$(EXESUF): $(qos-test-obj-y)
76446e7b706SFam Zheng
765f66e7ac8SMarkus Armbrustertests/qmp-test$(EXESUF): tests/qmp-test.o
766d93bb9d5SMarkus Armbrustertests/qmp-cmd-test$(EXESUF): tests/qmp-cmd-test.o
76746e7b706SFam Zhengtests/device-introspect-test$(EXESUF): tests/device-introspect-test.o
76846e7b706SFam Zhengtests/rtc-test$(EXESUF): tests/rtc-test.o
76946e7b706SFam Zhengtests/m48t59-test$(EXESUF): tests/m48t59-test.o
770645d3cbeSSu Hangtests/hexloader-test$(EXESUF): tests/hexloader-test.o
77146e7b706SFam Zhengtests/endianness-test$(EXESUF): tests/endianness-test.o
772fcbf4a3cSThomas Huthtests/prom-env-test$(EXESUF): tests/prom-env-test.o $(libqos-obj-y)
773eeddd59fSLaurent Viviertests/rtas-test$(EXESUF): tests/rtas-test.o $(libqos-spapr-obj-y)
77446e7b706SFam Zhengtests/fdc-test$(EXESUF): tests/fdc-test.o
77546e7b706SFam Zhengtests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y)
776377213f4SPhilippe Mathieu-Daudétests/ahci-test$(EXESUF): tests/ahci-test.o $(libqos-pc-obj-y) qemu-img$(EXESUF)
77746e7b706SFam Zhengtests/ipmi-kcs-test$(EXESUF): tests/ipmi-kcs-test.o
77846e7b706SFam Zhengtests/ipmi-bt-test$(EXESUF): tests/ipmi-bt-test.o
77946e7b706SFam Zhengtests/hd-geo-test$(EXESUF): tests/hd-geo-test.o
78046e7b706SFam Zhengtests/boot-order-test$(EXESUF): tests/boot-order-test.o $(libqos-obj-y)
781d2ab58ffSThomas Huthtests/boot-serial-test$(EXESUF): tests/boot-serial-test.o $(libqos-obj-y)
78246e7b706SFam Zhengtests/bios-tables-test$(EXESUF): tests/bios-tables-test.o \
7833248f1b4SBen Warren	tests/boot-sector.o tests/acpi-utils.o $(libqos-obj-y)
78446e7b706SFam Zhengtests/pxe-test$(EXESUF): tests/pxe-test.o tests/boot-sector.o $(libqos-obj-y)
78517ff8e18SSteffen Görtztests/microbit-test$(EXESUF): tests/microbit-test.o
7867a2334f7SCédric Le Goatertests/m25p80-test$(EXESUF): tests/m25p80-test.o
78746e7b706SFam Zhengtests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y)
78846e7b706SFam Zhengtests/q35-test$(EXESUF): tests/q35-test.o $(libqos-pc-obj-y)
78946e7b706SFam Zhengtests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y)
79046e7b706SFam Zhengtests/rtl8139-test$(EXESUF): tests/rtl8139-test.o $(libqos-pc-obj-y)
791ca8e4bf4SDavid Gibsontests/pnv-xscom-test$(EXESUF): tests/pnv-xscom-test.o
79246e7b706SFam Zhengtests/wdt_ib700-test$(EXESUF): tests/wdt_ib700-test.o
79346e7b706SFam Zhengtests/tco-test$(EXESUF): tests/tco-test.o $(libqos-pc-obj-y)
79406d09a01SPaolo Bonzinitests/virtio-ccw-test$(EXESUF): tests/virtio-ccw-test.o
79546e7b706SFam Zhengtests/display-vga-test$(EXESUF): tests/display-vga-test.o
79646e7b706SFam Zhengtests/qom-test$(EXESUF): tests/qom-test.o
79778f86a2bSThomas Huthtests/test-hmp$(EXESUF): tests/test-hmp.o
7989c5a87e4SIgor Mammedovtests/machine-none-test$(EXESUF): tests/machine-none-test.o
7990d9d4872SDavid Hildenbrandtests/device-plug-test$(EXESUF): tests/device-plug-test.o
80019e3d979SPaolo Bonzinitests/drive_del-test$(EXESUF): tests/drive_del-test.o
80146e7b706SFam Zhengtests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
80246e7b706SFam Zhengtests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
80346e7b706SFam Zhengtests/intel-hda-test$(EXESUF): tests/intel-hda-test.o
80446e7b706SFam Zhengtests/ioh3420-test$(EXESUF): tests/ioh3420-test.o
80546e7b706SFam Zhengtests/usb-hcd-uhci-test$(EXESUF): tests/usb-hcd-uhci-test.o $(libqos-usb-obj-y)
80646e7b706SFam Zhengtests/usb-hcd-ehci-test$(EXESUF): tests/usb-hcd-ehci-test.o $(libqos-usb-obj-y)
80746e7b706SFam Zhengtests/usb-hcd-xhci-test$(EXESUF): tests/usb-hcd-xhci-test.o $(libqos-usb-obj-y)
808152e0393SThomas Huthtests/cpu-plug-test$(EXESUF): tests/cpu-plug-test.o
8092656bfd9SJuan Quintelatests/migration-test$(EXESUF): tests/migration-test.o
81046e7b706SFam Zhengtests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
81146e7b706SFam Zhengtests/test-qemu-opts$(EXESUF): tests/test-qemu-opts.o $(test-util-obj-y)
812599c156bSMarkus Armbrustertests/test-keyval$(EXESUF): tests/test-keyval.o $(test-util-obj-y) $(test-qapi-obj-y)
81346e7b706SFam Zhengtests/test-write-threshold$(EXESUF): tests/test-write-threshold.o $(test-block-obj-y)
81446e7b706SFam Zhengtests/test-netfilter$(EXESUF): tests/test-netfilter.o $(qtest-obj-y)
81546e7b706SFam Zhengtests/test-filter-mirror$(EXESUF): tests/test-filter-mirror.o $(qtest-obj-y)
81646e7b706SFam Zhengtests/test-filter-redirector$(EXESUF): tests/test-filter-redirector.o $(qtest-obj-y)
8176efef58eSEduardo Habkosttests/test-x86-cpuid-compat$(EXESUF): tests/test-x86-cpuid-compat.o $(qtest-obj-y)
8182bf25e07SLaurent Viviertests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
819de97cdedSMarc-André Lureautests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o $(test-util-obj-y) libvhost-user.a
820c739cdddSFam Zhengtests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y)
821882fac37SDmitry Osipenkotests/test-arm-mptimer$(EXESUF): tests/test-arm-mptimer.o
8226c873d11SMarkus Armbrustertests/test-qapi-util$(EXESUF): tests/test-qapi-util.o $(test-util-obj-y)
82363baf8bfSIgor Mammedovtests/numa-test$(EXESUF): tests/numa-test.o
8244871b51bSMichael S. Tsirkintests/vmgenid-test$(EXESUF): tests/vmgenid-test.o tests/boot-sector.o tests/acpi-utils.o
82542f45505SThomas Huthtests/cdrom-test$(EXESUF): tests/cdrom-test.o tests/boot-sector.o $(libqos-obj-y)
82646e7b706SFam Zheng
827409437e1SDaniel P. Berrangetests/migration/stress$(EXESUF): tests/migration/stress.o
8280bdb12c7SPeter Maydell	$(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@")
829409437e1SDaniel P. Berrange
830409437e1SDaniel P. BerrangeINITRD_WORK_DIR=tests/migration/initrd
831409437e1SDaniel P. Berrange
832409437e1SDaniel P. Berrangetests/migration/initrd-stress.img: tests/migration/stress$(EXESUF)
833409437e1SDaniel P. Berrange	mkdir -p $(INITRD_WORK_DIR)
834409437e1SDaniel P. Berrange	cp $< $(INITRD_WORK_DIR)/init
835409437e1SDaniel P. Berrange	(cd $(INITRD_WORK_DIR) && (find | cpio --quiet -o -H newc | gzip -9)) > $@
836409437e1SDaniel P. Berrange	rm $(INITRD_WORK_DIR)/init
837409437e1SDaniel P. Berrange	rmdir $(INITRD_WORK_DIR)
838409437e1SDaniel P. Berrange
83946e7b706SFam Zheng# QTest rules
84046e7b706SFam Zheng
8412b1f35b9SAlex BennéeTARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS)))
84246e7b706SFam Zhengifeq ($(CONFIG_POSIX),y)
84346e7b706SFam ZhengQTEST_TARGETS = $(TARGETS)
84446e7b706SFam Zhengcheck-qtest-y=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))
84546e7b706SFam Zhengcheck-qtest-y += $(check-qtest-generic-y)
84646e7b706SFam Zhengelse
84746e7b706SFam ZhengQTEST_TARGETS =
84846e7b706SFam Zhengendif
84946e7b706SFam Zheng
85046e7b706SFam Zhengqtest-obj-y = tests/libqtest.o $(test-util-obj-y)
85146e7b706SFam Zheng$(check-qtest-y): $(qtest-obj-y)
85246e7b706SFam Zheng
8534be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): qemu-ga$(EXESUF)
8544be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): tests/test-qga.o $(qtest-obj-y)
85546e7b706SFam Zheng
85646e7b706SFam ZhengSPEED = quick
85746e7b706SFam Zheng
85846e7b706SFam Zheng# gtester tests, possibly with verbose output
8599df43317SPaolo Bonzini# do_test_tap runs all tests, even if some of them fail, while do_test_human
8609df43317SPaolo Bonzini# stops at the first failure unless -k is given on the command line
8619df43317SPaolo Bonzini
8629df43317SPaolo Bonzinidefine do_test_human_k
8639df43317SPaolo Bonzini        $(quiet-@)rc=0; $(foreach COMMAND, $1, \
8649df43317SPaolo Bonzini          $(call quiet-command-run, \
8659df43317SPaolo Bonzini            export MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} $2; \
8669df43317SPaolo Bonzini              $(COMMAND) -m=$(SPEED) -k --tap < /dev/null \
8679df43317SPaolo Bonzini              | ./scripts/tap-driver.pl --test-name="$(notdir $(COMMAND))" $(if $(V),, --show-failures-only) \
8689df43317SPaolo Bonzini              || rc=$$?;, "TEST", "$@: $(COMMAND)")) exit $$rc
8699df43317SPaolo Bonziniendef
8709df43317SPaolo Bonzinidefine do_test_human_no_k
8719df43317SPaolo Bonzini        $(foreach COMMAND, $1, \
8729df43317SPaolo Bonzini          $(call quiet-command, \
8739df43317SPaolo Bonzini            MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} $2 \
8749df43317SPaolo Bonzini              $(COMMAND) -m=$(SPEED) -k --tap < /dev/null \
8759df43317SPaolo Bonzini              | ./scripts/tap-driver.pl --test-name="$(notdir $(COMMAND))" $(if $(V),, --show-failures-only), \
8769df43317SPaolo Bonzini              "TEST", "$@: $(COMMAND)")
8779df43317SPaolo Bonzini)
8789df43317SPaolo Bonziniendef
8799df43317SPaolo Bonzinido_test_human = \
8809df43317SPaolo Bonzini        $(if $(findstring k, $(MAKEFLAGS)), $(do_test_human_k), $(do_test_human_no_k))
8819df43317SPaolo Bonzini
8829df43317SPaolo Bonzinidefine do_test_tap
8839df43317SPaolo Bonzini	$(call quiet-command, \
8849df43317SPaolo Bonzini          { export MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} $2; \
8859df43317SPaolo Bonzini            $(foreach COMMAND, $1, \
8869df43317SPaolo Bonzini	      $(COMMAND) -m=$(SPEED) -k --tap < /dev/null \
8879df43317SPaolo Bonzini	      | sed "s/^[a-z][a-z]* [0-9]* /&$(notdir $(COMMAND)) /" || true; ) } \
8889df43317SPaolo Bonzini	      | ./scripts/tap-merge.pl | tee "$@" \
8899df43317SPaolo Bonzini	      | ./scripts/tap-driver.pl $(if $(V),, --show-failures-only), \
8909df43317SPaolo Bonzini	  "TAP","$@")
8919df43317SPaolo Bonziniendef
89246e7b706SFam Zheng
89346e7b706SFam Zheng.PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS))
894*3b8593eeSMarkus Armbruster$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: %-softmmu/all $(check-qtest-y)
8959df43317SPaolo Bonzini	$(call do_test_human,$(check-qtest-$*-y) $(check-qtest-generic-y), \
8969df43317SPaolo Bonzini	  QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
8979df43317SPaolo Bonzini	  QTEST_QEMU_IMG=qemu-img$(EXESUF))
89846e7b706SFam Zheng
8999df43317SPaolo Bonzinicheck-unit: $(check-unit-y)
9009df43317SPaolo Bonzini	$(call do_test_human, $^)
90146e7b706SFam Zheng
9029df43317SPaolo Bonzinicheck-speed: $(check-speed-y)
9039df43317SPaolo Bonzini	$(call do_test_human, $^)
90446e7b706SFam Zheng
9059df43317SPaolo Bonzini# gtester tests with TAP output
90646e7b706SFam Zheng
907*3b8593eeSMarkus Armbruster$(patsubst %, check-report-qtest-%.tap, $(QTEST_TARGETS)): check-report-qtest-%.tap: %-softmmu/all $(check-qtest-y)
9089df43317SPaolo Bonzini	$(call do_test_tap, $(check-qtest-$*-y) $(check-qtest-generic-y), \
9099df43317SPaolo Bonzini	  QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
9109df43317SPaolo Bonzini	  QTEST_QEMU_IMG=qemu-img$(EXESUF))
9119df43317SPaolo Bonzini
9129df43317SPaolo Bonzinicheck-report-unit.tap: $(check-unit-y)
9139df43317SPaolo Bonzini	$(call do_test_tap,$^)
91446e7b706SFam Zheng
91546e7b706SFam Zheng# Reports and overall runs
91646e7b706SFam Zheng
9179df43317SPaolo Bonzinicheck-report.tap: $(patsubst %,check-report-qtest-%.tap, $(QTEST_TARGETS)) check-report-unit.tap
91877b748a8SMarkus Armbruster	$(call quiet-command, cat $^ | scripts/tap-merge.pl >$@,"GEN","$@")
91946e7b706SFam Zheng
9202cade3d7SAlex Bennée# FPU Emulation tests (aka softfloat)
9212cade3d7SAlex Bennée#
9222cade3d7SAlex Bennée# As we still have some places that need fixing the rules are a little
9232cade3d7SAlex Bennée# more complex than they need to be and have to override some of the
9242cade3d7SAlex Bennée# generic Makefile expansions. Once we are cleanly passing all
9252cade3d7SAlex Bennée# the tests we can simplify the make syntax.
9262cade3d7SAlex Bennée
9272cade3d7SAlex BennéeFP_TEST_BIN=$(BUILD_DIR)/tests/fp/fp-test
9282cade3d7SAlex Bennée
9292cade3d7SAlex Bennée# the build dir is created by configure
9302cade3d7SAlex Bennée.PHONY: $(FP_TEST_BIN)
9312cade3d7SAlex Bennée$(FP_TEST_BIN):
9322cade3d7SAlex Bennée	$(call quiet-command, \
9332cade3d7SAlex Bennée	 	$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" $(notdir $@), \
9342cade3d7SAlex Bennée	         "BUILD", "$(notdir $@)")
9352cade3d7SAlex Bennée
9362cade3d7SAlex Bennée# The full test suite can take a bit of time, default to a quick run
9374f575c08SAlex Bennée# "-l 2 -r all" can take more than a day for some operations and is best
9384f575c08SAlex Bennée# run manually
939bf30e866SAlex BennéeFP_TL=-l 1 -r all
9402cade3d7SAlex Bennée
941bf30e866SAlex Bennée# $1 = tests, $2 = description, $3 = test flags
9422cade3d7SAlex Bennéetest-softfloat = $(call quiet-command, \
9432cade3d7SAlex Bennée			cd $(BUILD_DIR)/tests/fp && \
944bf30e866SAlex Bennée			./fp-test -s $(if $3,$3,$(FP_TL)) $1 > $2.out 2>&1 || \
9452cade3d7SAlex Bennée			(cat $2.out && exit 1;), \
9462cade3d7SAlex Bennée			"FLOAT TEST", $2)
9472cade3d7SAlex Bennée
9482cade3d7SAlex Bennée# Conversion Routines:
9492cade3d7SAlex Bennée# FIXME: i32_to_extF80 (broken), i64_to_extF80 (broken)
950dc3f8a9dSAlex Bennée#        ui32_to_f128 (not implemented), extF80_roundToInt (broken)
9512cade3d7SAlex Bennée#
9522cade3d7SAlex Bennéecheck-softfloat-conv: $(FP_TEST_BIN)
9532cade3d7SAlex Bennée	$(call test-softfloat, \
9542cade3d7SAlex Bennée		i32_to_f16 i64_to_f16 \
9552cade3d7SAlex Bennée		i32_to_f32 i64_to_f32 \
9562cade3d7SAlex Bennée		i32_to_f64 i64_to_f64 \
9572cade3d7SAlex Bennée		i32_to_f128 i64_to_f128, int-to-float)
9582cade3d7SAlex Bennée	$(call test-softfloat, \
9592cade3d7SAlex Bennée		ui32_to_f16 ui64_to_f16 \
9602cade3d7SAlex Bennée		ui32_to_f32 ui64_to_f32 \
9612cade3d7SAlex Bennée		ui32_to_f64 ui64_to_f64 \
9622cade3d7SAlex Bennée		ui64_to_f128, uint-to-float)
9632cade3d7SAlex Bennée	$(call test-softfloat, \
9642cade3d7SAlex Bennée		f16_to_i32 f16_to_i32_r_minMag \
9652cade3d7SAlex Bennée		f32_to_i32 f32_to_i32_r_minMag \
9662cade3d7SAlex Bennée		f64_to_i32 f64_to_i32_r_minMag \
9672cade3d7SAlex Bennée		extF80_to_i32 extF80_to_i32_r_minMag \
9682cade3d7SAlex Bennée		f128_to_i32 f128_to_i32_r_minMag \
9692cade3d7SAlex Bennée		f16_to_i64 f16_to_i64_r_minMag \
9702cade3d7SAlex Bennée		f32_to_i64 f32_to_i64_r_minMag \
9712cade3d7SAlex Bennée		f64_to_i64 f64_to_i64_r_minMag \
9722cade3d7SAlex Bennée		extF80_to_i64 extF80_to_i64_r_minMag \
9732cade3d7SAlex Bennée		f128_to_i64 f128_to_i64_r_minMag, \
9742cade3d7SAlex Bennée		float-to-int)
9752cade3d7SAlex Bennée	$(call test-softfloat, \
9762cade3d7SAlex Bennée		f16_to_ui32 f16_to_ui32_r_minMag \
9772cade3d7SAlex Bennée		f32_to_ui32 f32_to_ui32_r_minMag \
9782cade3d7SAlex Bennée		f64_to_ui32 f64_to_ui32_r_minMag \
979dc3f8a9dSAlex Bennée		f128_to_ui32 f128_to_ui32_r_minMag \
9802cade3d7SAlex Bennée		f16_to_ui64 f16_to_ui64_r_minMag \
9812cade3d7SAlex Bennée		f32_to_ui64 f32_to_ui64_r_minMag \
982dc3f8a9dSAlex Bennée		f64_to_ui64 f64_to_ui64_r_minMag \
983dc3f8a9dSAlex Bennée		f128_to_ui64 f128_to_ui64_r_minMag, \
9842cade3d7SAlex Bennée		float-to-uint)
9852cade3d7SAlex Bennée	$(call test-softfloat, \
9862cade3d7SAlex Bennée		f16_roundToInt f32_roundToInt \
9872cade3d7SAlex Bennée		f64_roundToInt f128_roundToInt, \
9882cade3d7SAlex Bennée		round-to-integer)
9892cade3d7SAlex Bennée
9902cade3d7SAlex Bennée# Generic rule for all float operations
9912cade3d7SAlex Bennée#
9922cade3d7SAlex Bennée# Some patterns are overidden due to broken or missing tests.
9932cade3d7SAlex Bennée# Hopefully these can be removed over time.
9942cade3d7SAlex Bennée
9952cade3d7SAlex Bennéecheck-softfloat-%: $(FP_TEST_BIN)
9962cade3d7SAlex Bennée	$(call test-softfloat, f16_$* f32_$* f64_$* extF80_$* f128_$*, $*)
9972cade3d7SAlex Bennée
9982cade3d7SAlex Bennée# Float Compare routines
9992cade3d7SAlex BennéeSF_COMPARE_OPS=eq eq_signaling le le_quiet lt_quiet
10002cade3d7SAlex BennéeSF_COMPARE_RULES=$(patsubst %,check-softfloat-%, $(SF_COMPARE_OPS))
10012cade3d7SAlex Bennée
10022cade3d7SAlex Bennée# FIXME: extF80_le_quiet (broken)
10032cade3d7SAlex Bennéecheck-softfloat-le_quiet: $(FP_TEST_BIN)
10042cade3d7SAlex Bennée	$(call test-softfloat, 				\
10052cade3d7SAlex Bennée		f16_le_quiet f32_le_quiet f64_le_quiet  \
10062cade3d7SAlex Bennée		f128_le_quiet, 				\
10072cade3d7SAlex Bennée		le_quiet)
10082cade3d7SAlex Bennée
10092cade3d7SAlex Bennée# FIXME: extF80_lt_quiet (broken)
10102cade3d7SAlex Bennéecheck-softfloat-lt_quiet: $(FP_TEST_BIN)
10112cade3d7SAlex Bennée	$(call test-softfloat, 				\
10122cade3d7SAlex Bennée		f16_lt_quiet f32_lt_quiet f64_lt_quiet  \
10132cade3d7SAlex Bennée		f128_lt_quiet, 				\
10142cade3d7SAlex Bennée		lt_quiet)
10152cade3d7SAlex Bennée
10162cade3d7SAlex Bennée.PHONY: check-softfloat-compare
10172cade3d7SAlex Bennéecheck-softfloat-compare: $(SF_COMPARE_RULES)
10182cade3d7SAlex Bennée
10192cade3d7SAlex Bennée# Math Operations
10202cade3d7SAlex Bennée
10212cade3d7SAlex Bennée# FIXME: extF80_mulAdd (missing)
10222cade3d7SAlex Bennéecheck-softfloat-mulAdd: $(FP_TEST_BIN)
10232cade3d7SAlex Bennée	$(call test-softfloat, \
10242cade3d7SAlex Bennée		f16_mulAdd f32_mulAdd f64_mulAdd f128_mulAdd, \
1025bf30e866SAlex Bennée		mulAdd,-l 1)
10262cade3d7SAlex Bennée
10272cade3d7SAlex Bennée# FIXME: extF80_rem (broken)
10282cade3d7SAlex Bennéecheck-softfloat-rem: $(FP_TEST_BIN)
10292cade3d7SAlex Bennée	$(call test-softfloat, \
10302cade3d7SAlex Bennée		f16_rem f32_rem f64_rem f128_rem, \
10312cade3d7SAlex Bennée		rem)
10322cade3d7SAlex Bennée
10332cade3d7SAlex BennéeSF_MATH_OPS=add sub mul mulAdd div rem sqrt
10342cade3d7SAlex BennéeSF_MATH_RULES=$(patsubst %,check-softfloat-%, $(SF_MATH_OPS))
10352cade3d7SAlex Bennée
10362cade3d7SAlex Bennée.PHONY: check-softfloat-ops
10372cade3d7SAlex Bennéecheck-softfloat-ops: $(SF_MATH_RULES)
10382cade3d7SAlex Bennée
103976170102SAlex Bennée# Finally a generic rule to test all of softfoat. If TCG isnt't
104076170102SAlex Bennée# enabled we define a null operation which skips the tests.
104176170102SAlex Bennée
104276170102SAlex Bennée.PHONY: check-softfloat
104376170102SAlex Bennéeifeq ($(CONFIG_TCG),y)
104476170102SAlex Bennéecheck-softfloat: check-softfloat-conv check-softfloat-compare check-softfloat-ops
104576170102SAlex Bennéeelse
104676170102SAlex Bennéecheck-softfloat:
104776170102SAlex Bennée	$(call quiet-command, /bin/true, "FLOAT TEST", \
104876170102SAlex Bennée		"SKIPPED for non-TCG builds")
104976170102SAlex Bennéeendif
105076170102SAlex Bennée
10518ba0a820SAlex Bennée# Per guest TCG tests
10528ba0a820SAlex Bennée
1053e24e66f0SAlex BennéeBUILD_TCG_TARGET_RULES=$(patsubst %,build-tcg-tests-%, $(TARGET_DIRS))
1054e24e66f0SAlex BennéeCLEAN_TCG_TARGET_RULES=$(patsubst %,clean-tcg-tests-%, $(TARGET_DIRS))
1055e24e66f0SAlex BennéeRUN_TCG_TARGET_RULES=$(patsubst %,run-tcg-tests-%, $(TARGET_DIRS))
10568ba0a820SAlex Bennée
10571a7fab92SAlex Bennéeifeq ($(HAVE_USER_DOCKER),y)
10581a7fab92SAlex Bennée# Probe for the Docker Builds needed for each build
10592b1f35b9SAlex Bennée$(foreach PROBE_TARGET,$(TARGET_DIRS), 				\
10601a7fab92SAlex Bennée	$(eval -include $(SRC_PATH)/tests/tcg/Makefile.probe) 	\
10611a7fab92SAlex Bennée	$(if $(DOCKER_PREREQ), 					\
10621a7fab92SAlex Bennée		$(eval build-tcg-tests-$(PROBE_TARGET): $(DOCKER_PREREQ))))
10631a7fab92SAlex Bennéeendif
10641a7fab92SAlex Bennée
10658ba0a820SAlex Bennéebuild-tcg-tests-%:
1066cff54773SAlex Bennée	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" \
1067cff54773SAlex Bennée		SKIP_DOCKER_BUILD=1 TARGET_DIR="$*/" guest-tests, \
1068cff54773SAlex Bennée		"BUILD", "TCG tests for $*")
10698ba0a820SAlex Bennée
10708ba0a820SAlex Bennéerun-tcg-tests-%: % build-tcg-tests-%
1071cff54773SAlex Bennée	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" \
1072cff54773SAlex Bennée		SKIP_DOCKER_BUILD=1 TARGET_DIR="$*/" run-guest-tests, \
1073cff54773SAlex Bennée		"RUN", "TCG tests for $*")
10748ba0a820SAlex Bennée
10758ba0a820SAlex Bennéeclean-tcg-tests-%:
10768ba0a820SAlex Bennée	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" clean-guest-tests,)
10778ba0a820SAlex Bennée
10788ba0a820SAlex Bennée.PHONY: build-tcg
10798ba0a820SAlex Bennéebuild-tcg: $(BUILD_TCG_TARGET_RULES)
10808ba0a820SAlex Bennée
10818ba0a820SAlex Bennée.PHONY: check-tcg
1082df2bb38eSAlex Bennéecheck-tcg: $(RUN_TCG_TARGET_RULES)
10838ba0a820SAlex Bennée
10848ba0a820SAlex Bennée.PHONY: clean-tcg
10858ba0a820SAlex Bennéeclean-tcg: $(CLEAN_TCG_TARGET_RULES)
108646e7b706SFam Zheng
108746e7b706SFam Zheng# Other tests
108846e7b706SFam Zheng
1089206d1b9cSLaurent VivierQEMU_IOTESTS_HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = tests/qemu-iotests/socket_scm_helper$(EXESUF)
109046e7b706SFam Zheng
109146e7b706SFam Zheng.PHONY: check-tests/qemu-iotests-quick.sh
10929c2b28e4SPhilippe Mathieu-Daudécheck-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF) qemu-nbd$(EXESUF) $(QEMU_IOTESTS_HELPERS-y)
109346e7b706SFam Zheng	$<
109446e7b706SFam Zheng
109546e7b706SFam Zheng.PHONY: $(patsubst %, check-%, $(check-qapi-schema-y))
109646e7b706SFam Zheng$(patsubst %, check-%, $(check-qapi-schema-y)): check-%.json: $(SRC_PATH)/%.json
109746e7b706SFam Zheng	$(call quiet-command, PYTHONPATH=$(SRC_PATH)/scripts \
10984ac2670bSEduardo Habkost		PYTHONIOENCODING=utf-8 $(PYTHON) $(SRC_PATH)/tests/qapi-schema/test-qapi.py \
109946e7b706SFam Zheng		$^ >$*.test.out 2>$*.test.err; \
110046e7b706SFam Zheng		echo $$? >$*.test.exit, \
11010bdb12c7SPeter Maydell		"TEST","$*.out")
110246e7b706SFam Zheng	@# Sanitize error messages (make them independent of build directory)
110302e3092dSEric Blake	@perl -p -e 's|\Q$(SRC_PATH)\E/||g' $*.test.err | diff -u $(SRC_PATH)/$*.err -
110402e3092dSEric Blake	@diff -u $(SRC_PATH)/$*.out $*.test.out
110502e3092dSEric Blake	@diff -u $(SRC_PATH)/$*.exit $*.test.exit
110646e7b706SFam Zheng
110780d1f2e4SMarkus Armbruster.PHONY: check-tests/qapi-schema/doc-good.texi
110880d1f2e4SMarkus Armbrustercheck-tests/qapi-schema/doc-good.texi: tests/qapi-schema/doc-good.test.texi
110902e3092dSEric Blake	@diff -u $(SRC_PATH)/tests/qapi-schema/doc-good.texi $<
111080d1f2e4SMarkus Armbruster
1111568ae7efSRichard Henderson.PHONY: check-decodetree
1112568ae7efSRichard Hendersoncheck-decodetree:
1113568ae7efSRichard Henderson	$(call quiet-command, \
1114568ae7efSRichard Henderson	  cd $(SRC_PATH)/tests/decode && \
1115568ae7efSRichard Henderson          ./check.sh "$(PYTHON)" "$(SRC_PATH)/scripts/decodetree.py", \
1116568ae7efSRichard Henderson          TEST, decodetree.py)
1117568ae7efSRichard Henderson
111821313721SCleber Rosa# Python venv for running tests
111921313721SCleber Rosa
1120a56931eeSCleber Rosa.PHONY: check-venv check-acceptance
112121313721SCleber Rosa
112221313721SCleber RosaTESTS_VENV_DIR=$(BUILD_DIR)/tests/venv
112321313721SCleber RosaTESTS_VENV_REQ=$(SRC_PATH)/tests/requirements.txt
1124a56931eeSCleber RosaTESTS_RESULTS_DIR=$(BUILD_DIR)/tests/results
1125a56931eeSCleber Rosa# Controls the output generated by Avocado when running tests.
1126a56931eeSCleber Rosa# Any number of command separated loggers are accepted.  For more
1127a56931eeSCleber Rosa# information please refer to "avocado --help".
112859692a12SCleber RosaAVOCADO_SHOW=app
1129b194713fSCleber RosaAVOCADO_TAGS=$(patsubst %-softmmu,-t arch:%, $(filter %-softmmu,$(TARGET_DIRS)))
113021313721SCleber Rosa
11314061fcf2SCleber Rosaifneq ($(findstring v2,"v$(PYTHON_VERSION)"),v2)
113221313721SCleber Rosa$(TESTS_VENV_DIR): $(TESTS_VENV_REQ)
113321313721SCleber Rosa	$(call quiet-command, \
113421313721SCleber Rosa            $(PYTHON) -m venv --system-site-packages $@, \
113521313721SCleber Rosa            VENV, $@)
113621313721SCleber Rosa	$(call quiet-command, \
113721313721SCleber Rosa            $(TESTS_VENV_DIR)/bin/python -m pip -q install -r $(TESTS_VENV_REQ), \
113821313721SCleber Rosa            PIP, $(TESTS_VENV_REQ))
113921313721SCleber Rosa	$(call quiet-command, touch $@)
114021313721SCleber Rosaelse
114121313721SCleber Rosa$(TESTS_VENV_DIR):
114221313721SCleber Rosa	$(error "venv directory for tests requires Python 3")
114321313721SCleber Rosaendif
114421313721SCleber Rosa
1145a56931eeSCleber Rosa$(TESTS_RESULTS_DIR):
1146a56931eeSCleber Rosa	$(call quiet-command, mkdir -p $@, \
1147a56931eeSCleber Rosa            MKDIR, $@)
1148a56931eeSCleber Rosa
114921313721SCleber Rosacheck-venv: $(TESTS_VENV_DIR)
115021313721SCleber Rosa
1151a56931eeSCleber Rosacheck-acceptance: check-venv $(TESTS_RESULTS_DIR)
1152a56931eeSCleber Rosa	$(call quiet-command, \
1153a56931eeSCleber Rosa            $(TESTS_VENV_DIR)/bin/python -m avocado \
1154a56931eeSCleber Rosa            --show=$(AVOCADO_SHOW) run --job-results-dir=$(TESTS_RESULTS_DIR) \
1155b194713fSCleber Rosa            --filter-by-tags-include-empty --filter-by-tags-include-empty-key \
1156b194713fSCleber Rosa            $(AVOCADO_TAGS) \
1157a56931eeSCleber Rosa            --failfast=on $(SRC_PATH)/tests/acceptance, \
1158a56931eeSCleber Rosa            "AVOCADO", "tests/acceptance")
1159a56931eeSCleber Rosa
116046e7b706SFam Zheng# Consolidated targets
116146e7b706SFam Zheng
11623e20c81eSMarkus Armbruster.PHONY: check-block check-qapi-schema check-qtest check-unit check check-clean
116380d1f2e4SMarkus Armbrustercheck-qapi-schema: $(patsubst %,check-%, $(check-qapi-schema-y)) check-tests/qapi-schema/doc-good.texi
116446e7b706SFam Zhengcheck-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS))
116546e7b706SFam Zhengcheck-block: $(patsubst %,check-%, $(check-block-y))
116676170102SAlex Bennéecheck: check-qapi-schema check-unit check-softfloat check-qtest check-decodetree
116746e7b706SFam Zhengcheck-clean:
116846e7b706SFam Zheng	rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
116946e7b706SFam Zheng	rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST), $(check-qtest-$(target)-y)) $(check-qtest-generic-y))
1170fb0bc835SMarkus Armbruster	rm -f tests/test-qapi-gen-timestamp
1171a56931eeSCleber Rosa	rm -rf $(TESTS_VENV_DIR) $(TESTS_RESULTS_DIR)
117246e7b706SFam Zheng
117346e7b706SFam Zhengclean: check-clean
117446e7b706SFam Zheng
117546e7b706SFam Zheng# Build the help program automatically
117646e7b706SFam Zheng
117746e7b706SFam Zhengall: $(QEMU_IOTESTS_HELPERS-y)
117846e7b706SFam Zheng
117946e7b706SFam Zheng-include $(wildcard tests/*.d)
118046e7b706SFam Zheng-include $(wildcard tests/libqos/*.d)
1181e45eaef9SFam Zheng
1182e45eaef9SFam Zhengendif
1183