xref: /qemu/tests/Makefile.include (revision 31692b2e)
1e45eaef9SFam Zheng
2e45eaef9SFam Zheng.PHONY: check-help
3e45eaef9SFam Zhengcheck-help:
4e45eaef9SFam Zheng	@echo "Regression testing targets:"
5e45eaef9SFam Zheng	@echo
654f96b45SCleber Rosa	@echo " $(MAKE) check                Run unit, qapi-schema, qtest and decodetree"
754f96b45SCleber Rosa	@echo
8b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-qtest-TARGET   Run qtest tests for given target"
9b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-qtest          Run qtest tests"
10b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-unit           Run qobject tests"
11b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-speed          Run qobject speed tests"
12b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-qapi-schema    Run QAPI schema tests"
13b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-block          Run block tests"
148ba0a820SAlex Bennée	@echo " $(MAKE) check-tcg            Run TCG tests"
1576170102SAlex Bennée	@echo " $(MAKE) check-softfloat      Run FPU emulation tests"
16a56931eeSCleber Rosa	@echo " $(MAKE) check-acceptance     Run all acceptance (functional) tests"
1754f96b45SCleber Rosa	@echo
18b98a3baeSPhilippe Mathieu-Daudé	@echo " $(MAKE) check-report.html    Generates an HTML test report"
1921313721SCleber Rosa	@echo " $(MAKE) check-venv           Creates a Python venv for tests"
2054f96b45SCleber Rosa	@echo " $(MAKE) check-clean          Clean the tests and related data"
21e45eaef9SFam Zheng	@echo
22e45eaef9SFam Zheng	@echo "Please note that HTML reports do not regenerate if the unit tests"
2354f96b45SCleber Rosa	@echo "have not changed."
24e45eaef9SFam Zheng	@echo
25e45eaef9SFam Zheng	@echo "The variable SPEED can be set to control the gtester speed setting."
26b98a3baeSPhilippe Mathieu-Daudé	@echo "Default options are -k and (for $(MAKE) V=1) --verbose; they can be"
27e45eaef9SFam Zheng	@echo "changed with variable GTESTER_OPTIONS."
28e45eaef9SFam Zheng
29e45eaef9SFam Zhengifneq ($(wildcard config-host.mak),)
3046e7b706SFam Zhengexport SRC_PATH
3146e7b706SFam Zheng
32fb0bc835SMarkus Armbruster# TODO don't duplicate $(SRC_PATH)/Makefile's qapi-py here
33fb0bc835SMarkus Armbrusterqapi-py = $(SRC_PATH)/scripts/qapi/commands.py \
34fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/events.py \
35fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/introspect.py \
36fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/types.py \
37fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/visit.py \
38fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/common.py \
39fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi/doc.py \
40fb0bc835SMarkus Armbruster$(SRC_PATH)/scripts/qapi-gen.py
4146e7b706SFam Zheng
4246e7b706SFam Zheng# Get the list of all supported sysemu targets
4346e7b706SFam ZhengSYSEMU_TARGET_LIST := $(subst -softmmu.mak,,$(notdir \
4446e7b706SFam Zheng   $(wildcard $(SRC_PATH)/default-configs/*-softmmu.mak)))
4546e7b706SFam Zheng
467a6c377fSEric Blakecheck-unit-y += tests/check-qdict$(EXESUF)
47992159c7SMarkus Armbrustercheck-unit-y += tests/check-block-qdict$(EXESUF)
484429532bSMarkus Armbrustercheck-unit-y += tests/test-char$(EXESUF)
4901b2ffceSMarc-André Lureaucheck-unit-y += tests/check-qnum$(EXESUF)
5046e7b706SFam Zhengcheck-unit-y += tests/check-qstring$(EXESUF)
5146e7b706SFam Zhengcheck-unit-y += tests/check-qlist$(EXESUF)
5246e7b706SFam Zhengcheck-unit-y += tests/check-qnull$(EXESUF)
531b76e838SMax Reitzcheck-unit-y += tests/check-qobject$(EXESUF)
5446e7b706SFam Zhengcheck-unit-y += tests/check-qjson$(EXESUF)
55382176b4SMarc-André Lureaucheck-unit-y += tests/check-qlit$(EXESUF)
56b3db211fSDaniel P. Berrangecheck-unit-y += tests/test-qobject-output-visitor$(EXESUF)
57a15fcc3cSEric Blakecheck-unit-y += tests/test-clone-visitor$(EXESUF)
58b3db211fSDaniel P. Berrangecheck-unit-y += tests/test-qobject-input-visitor$(EXESUF)
59834a3f34SMarkus Armbrustercheck-unit-y += tests/test-qmp-cmds$(EXESUF)
6046e7b706SFam Zhengcheck-unit-y += tests/test-string-input-visitor$(EXESUF)
6146e7b706SFam Zhengcheck-unit-y += tests/test-string-output-visitor$(EXESUF)
6246e7b706SFam Zhengcheck-unit-y += tests/test-qmp-event$(EXESUF)
6346e7b706SFam Zhengcheck-unit-y += tests/test-opts-visitor$(EXESUF)
6446e7b706SFam Zhengcheck-unit-y += tests/test-coroutine$(EXESUF)
6546e7b706SFam Zhengcheck-unit-y += tests/test-visitor-serialization$(EXESUF)
6646e7b706SFam Zhengcheck-unit-y += tests/test-iov$(EXESUF)
6746e7b706SFam Zhengcheck-unit-y += tests/test-aio$(EXESUF)
680c330a73SPaolo Bonzinicheck-unit-y += tests/test-aio-multithread$(EXESUF)
6946e7b706SFam Zhengcheck-unit-y += tests/test-throttle$(EXESUF)
7046e7b706SFam Zhengcheck-unit-y += tests/test-thread-pool$(EXESUF)
7146e7b706SFam Zhengcheck-unit-y += tests/test-hbitmap$(EXESUF)
72881cfd17SKevin Wolfcheck-unit-y += tests/test-bdrv-drain$(EXESUF)
732dbfadf6SVladimir Sementsov-Ogievskiycheck-unit-y += tests/test-bdrv-graph-mod$(EXESUF)
749ef8112aSAlberto Garciacheck-unit-y += tests/test-blockjob$(EXESUF)
7546e7b706SFam Zhengcheck-unit-y += tests/test-blockjob-txn$(EXESUF)
76ad0df3e0SKevin Wolfcheck-unit-y += tests/test-block-backend$(EXESUF)
774720cbeeSKevin Wolfcheck-unit-y += tests/test-block-iothread$(EXESUF)
78aef96d7dSFam Zhengcheck-unit-y += tests/test-image-locking$(EXESUF)
7946e7b706SFam Zhengcheck-unit-y += tests/test-x86-cpuid$(EXESUF)
8046e7b706SFam Zheng# all code tested by test-x86-cpuid is inside topology.h
8146e7b706SFam Zhengifeq ($(CONFIG_SOFTMMU),y)
8246e7b706SFam Zhengcheck-unit-y += tests/test-xbzrle$(EXESUF)
8346e7b706SFam Zhengcheck-unit-$(CONFIG_POSIX) += tests/test-vmstate$(EXESUF)
8446e7b706SFam Zhengendif
8546e7b706SFam Zhengcheck-unit-y += tests/test-cutils$(EXESUF)
86f539fbe3SJose Ricardo Zivianicheck-unit-y += tests/test-shift128$(EXESUF)
8746e7b706SFam Zhengcheck-unit-y += tests/test-mul64$(EXESUF)
8846e7b706SFam Zhengcheck-unit-y += tests/test-int128$(EXESUF)
8946e7b706SFam Zheng# all code tested by test-int128 is inside int128.h
9046e7b706SFam Zhengcheck-unit-y += tests/rcutorture$(EXESUF)
9146e7b706SFam Zhengcheck-unit-y += tests/test-rcu-list$(EXESUF)
9290487e45SEmilio G. Cotacheck-unit-y += tests/test-rcu-simpleq$(EXESUF)
93dbf8862aSEmilio G. Cotacheck-unit-y += tests/test-rcu-tailq$(EXESUF)
94ff9249b7SEmilio G. Cotacheck-unit-y += tests/test-qdist$(EXESUF)
951a95404fSEmilio G. Cotacheck-unit-y += tests/test-qht$(EXESUF)
96a36270a4SAlex Bennéecheck-unit-y += tests/test-qht-par$(EXESUF)
9746e7b706SFam Zhengcheck-unit-y += tests/test-bitops$(EXESUF)
98c3f8962fSAlex Bennéecheck-unit-y += tests/test-bitcnt$(EXESUF)
99692fbdf9SMarc-André Lureaucheck-unit-y += tests/test-qdev-global-props$(EXESUF)
10046e7b706SFam Zhengcheck-unit-y += tests/check-qom-interface$(EXESUF)
10146e7b706SFam Zhengcheck-unit-y += tests/check-qom-proplist$(EXESUF)
10246e7b706SFam Zhengcheck-unit-y += tests/test-qemu-opts$(EXESUF)
103d454dbe0SMarkus Armbrustercheck-unit-y += tests/test-keyval$(EXESUF)
10446e7b706SFam Zhengcheck-unit-y += tests/test-write-threshold$(EXESUF)
1050c16c056SDaniel P. Berrangecheck-unit-y += tests/test-crypto-hash$(EXESUF)
1060128cd29SLongpeng(Mike)check-speed-y += tests/benchmark-crypto-hash$(EXESUF)
1074fd460bfSLongpeng(Mike)check-unit-y += tests/test-crypto-hmac$(EXESUF)
108c7a9af4bSLongpeng(Mike)check-speed-y += tests/benchmark-crypto-hmac$(EXESUF)
10946e7b706SFam Zhengcheck-unit-y += tests/test-crypto-cipher$(EXESUF)
1101efd9d5eSLongpeng(Mike)check-speed-y += tests/benchmark-crypto-cipher$(EXESUF)
11146e7b706SFam Zhengcheck-unit-y += tests/test-crypto-secret$(EXESUF)
11246e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlscredsx509$(EXESUF)
11346e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-crypto-tlssession$(EXESUF)
11446e7b706SFam Zhengifneq (,$(findstring qemu-ga,$(TOOLS)))
115a9d2e3f1SPhilippe Mathieu-Daudécheck-unit-$(call land,$(CONFIG_LINUX),$(CONFIG_VIRTIO_SERIAL)) += tests/test-qga$(EXESUF)
11646e7b706SFam Zhengendif
11746e7b706SFam Zhengcheck-unit-y += tests/test-timed-average$(EXESUF)
11890e33dfeSDaniel P. Berrangécheck-unit-$(CONFIG_INOTIFY1) += tests/test-util-filemonitor$(EXESUF)
11958dc31f1SDaniel P. Berrangecheck-unit-y += tests/test-util-sockets$(EXESUF)
120fb5c4ebcSDaniel P. Berrangécheck-unit-y += tests/test-authz-simple$(EXESUF)
121c8c99887SDaniel P. Berrangecheck-unit-y += tests/test-authz-list$(EXESUF)
12255d86984SDaniel P. Berrangécheck-unit-y += tests/test-authz-listfile$(EXESUF)
1238953caf3SDaniel P. Berrangecheck-unit-$(CONFIG_AUTH_PAM) += tests/test-authz-pam$(EXESUF)
12446e7b706SFam Zhengcheck-unit-y += tests/test-io-task$(EXESUF)
12546e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-socket$(EXESUF)
12646e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-file$(EXESUF)
12746e7b706SFam Zhengcheck-unit-$(CONFIG_GNUTLS) += tests/test-io-channel-tls$(EXESUF)
12846e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-command$(EXESUF)
12946e7b706SFam Zhengcheck-unit-y += tests/test-io-channel-buffer$(EXESUF)
13046e7b706SFam Zhengcheck-unit-y += tests/test-base64$(EXESUF)
13164dd2f3bSDaniel P. Berrangécheck-unit-$(if $(CONFIG_NETTLE),y,$(CONFIG_GCRYPT)) += tests/test-crypto-pbkdf$(EXESUF)
13246e7b706SFam Zhengcheck-unit-y += tests/test-crypto-ivgen$(EXESUF)
13346e7b706SFam Zhengcheck-unit-y += tests/test-crypto-afsplit$(EXESUF)
13446e7b706SFam Zhengcheck-unit-y += tests/test-crypto-xts$(EXESUF)
13546e7b706SFam Zhengcheck-unit-y += tests/test-crypto-block$(EXESUF)
13646e7b706SFam Zhengcheck-unit-y += tests/test-logging$(EXESUF)
137b3110466SChanglong Xiecheck-unit-$(CONFIG_REPLICATION) += tests/test-replication$(EXESUF)
138efad6682SRichard Hendersoncheck-unit-y += tests/test-bufferiszero$(EXESUF)
139c739cdddSFam Zhengcheck-unit-y += tests/test-uuid$(EXESUF)
14024b94625SPaolo Bonzinicheck-unit-y += tests/ptimer-test$(EXESUF)
1416c873d11SMarkus Armbrustercheck-unit-y += tests/test-qapi-util$(EXESUF)
14246e7b706SFam Zheng
14346e7b706SFam Zhengcheck-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh
14446e7b706SFam Zheng
14546e7b706SFam Zheng# All QTests for now are POSIX-only, but the dependencies are
14646e7b706SFam Zheng# really in libqtest, not in the testcases themselves.
14746e7b706SFam Zheng
1487a6c377fSEric Blakecheck-qtest-generic-y += tests/qmp-test$(EXESUF)
149d93bb9d5SMarkus Armbrustercheck-qtest-generic-y += tests/qmp-cmd-test$(EXESUF)
150d93bb9d5SMarkus Armbruster
151f66e7ac8SMarkus Armbrustercheck-qtest-generic-y += tests/device-introspect-test$(EXESUF)
15242f45505SThomas Huthcheck-qtest-generic-y += tests/cdrom-test$(EXESUF)
15346e7b706SFam Zheng
15446e7b706SFam Zhengcheck-qtest-pci-y += tests/e1000-test$(EXESUF)
155a3780b22SJuan Quintelacheck-qtest-pci-$(CONFIG_RTL8139_PCI) += tests/rtl8139-test$(EXESUF)
156b653696eSJuan Quintelacheck-qtest-pci-$(CONFIG_PCNET_PCI) += tests/pcnet-test$(EXESUF)
1578042c13cSJuan Quintelacheck-qtest-pci-$(CONFIG_EEPRO100_PCI) += tests/eepro100-test$(EXESUF)
158672d7de5SJuan Quintelacheck-qtest-pci-$(CONFIG_NE2000_PCI) += tests/ne2000-test$(EXESUF)
1594e205f15SJuan Quintelacheck-qtest-pci-$(CONFIG_NVME_PCI) += tests/nvme-test$(EXESUF)
160e48085f1SJuan Quintelacheck-qtest-pci-$(CONFIG_ES1370) += tests/es1370-test$(EXESUF)
161b6016dffSThomas Huthcheck-qtest-pci-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
162e995ed24SJuan Quintelacheck-qtest-pci-$(CONFIG_HDA) += tests/intel-hda-test$(EXESUF)
1631336e608SJuan Quintelacheck-qtest-pci-$(CONFIG_IVSHMEM_DEVICE) += tests/ivshmem-test$(EXESUF)
164b6016dffSThomas Huthcheck-qtest-pci-$(CONFIG_MEGASAS_SCSI_PCI) += tests/megasas-test$(EXESUF)
16546e7b706SFam Zheng
166c9324bf5SThomas Huthcheck-qtest-i386-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
16746e7b706SFam Zhengcheck-qtest-i386-y += tests/fdc-test$(EXESUF)
16846e7b706SFam Zhengcheck-qtest-i386-y += tests/ide-test$(EXESUF)
16946e7b706SFam Zhengcheck-qtest-i386-y += tests/ahci-test$(EXESUF)
17046e7b706SFam Zhengcheck-qtest-i386-y += tests/hd-geo-test$(EXESUF)
17146e7b706SFam Zhengcheck-qtest-i386-y += tests/boot-order-test$(EXESUF)
17246e7b706SFam Zhengcheck-qtest-i386-y += tests/bios-tables-test$(EXESUF)
173dff1ba07SJuan Quintelacheck-qtest-i386-$(CONFIG_SGA) += tests/boot-serial-test$(EXESUF)
174d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
17546e7b706SFam Zhengcheck-qtest-i386-y += tests/rtc-test$(EXESUF)
176b6016dffSThomas Huthcheck-qtest-i386-$(CONFIG_ISA_IPMI_KCS) += tests/ipmi-kcs-test$(EXESUF)
177f1231399SPeter Maydell# Disabled temporarily as it fails intermittently especially under NetBSD VM
178b6016dffSThomas Huth# check-qtest-i386-$(CONFIG_ISA_IPMI_BT) += tests/ipmi-bt-test$(EXESUF)
17946e7b706SFam Zhengcheck-qtest-i386-y += tests/i440fx-test$(EXESUF)
18046e7b706SFam Zhengcheck-qtest-i386-y += tests/fw_cfg-test$(EXESUF)
1810d9d4872SDavid Hildenbrandcheck-qtest-i386-y += tests/device-plug-test$(EXESUF)
18246e7b706SFam Zhengcheck-qtest-i386-y += tests/drive_del-test$(EXESUF)
18372f911d4SThomas Huthcheck-qtest-i386-$(CONFIG_WDT_IB700) += tests/wdt_ib700-test$(EXESUF)
18446e7b706SFam Zhengcheck-qtest-i386-y += tests/tco-test$(EXESUF)
18546e7b706SFam Zhengcheck-qtest-i386-y += $(check-qtest-pci-y)
186deead96dSThomas Huthcheck-qtest-i386-$(CONFIG_VMXNET3_PCI) += tests/vmxnet3-test$(EXESUF)
187c0b5be52SJuan Quintelacheck-qtest-i386-$(CONFIG_PVPANIC) += tests/pvpanic-test$(EXESUF)
188d7d5e279SJuan Quintelacheck-qtest-i386-$(CONFIG_I82801B11) += tests/i82801b11-test$(EXESUF)
1894a39edd8SJuan Quintelacheck-qtest-i386-$(CONFIG_IOH3420) += tests/ioh3420-test$(EXESUF)
190bc19828dSJuan Quintelacheck-qtest-i386-$(CONFIG_USB_OHCI) += tests/usb-hcd-ohci-test$(EXESUF)
1917c0dfc33SJuan Quintelacheck-qtest-i386-$(CONFIG_USB_UHCI) += tests/usb-hcd-uhci-test$(EXESUF)
192dad5ddceSJuan Quintelaifeq ($(CONFIG_USB_ECHI)$(CONFIG_USB_UHCI),yy)
19346e7b706SFam Zhengcheck-qtest-i386-y += tests/usb-hcd-ehci-test$(EXESUF)
194dad5ddceSJuan Quintelaendif
195c9b688b4SJuan Quintelacheck-qtest-i386-$(CONFIG_USB_XHCI_NEC) += tests/usb-hcd-xhci-test$(EXESUF)
196152e0393SThomas Huthcheck-qtest-i386-y += tests/cpu-plug-test$(EXESUF)
19746e7b706SFam Zhengcheck-qtest-i386-y += tests/q35-test$(EXESUF)
19883f3c709SBen Warrencheck-qtest-i386-y += tests/vmgenid-test$(EXESUF)
199889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_CRB) += tests/tpm-crb-swtpm-test$(EXESUF)
200889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_CRB) += tests/tpm-crb-test$(EXESUF)
201889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_TIS) += tests/tpm-tis-swtpm-test$(EXESUF)
202889d52a2SJuan Quintelacheck-qtest-i386-$(CONFIG_TPM_TIS) += tests/tpm-tis-test$(EXESUF)
203d616c12bSMarc-André Lureaucheck-qtest-i386-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
2047f57d58dSThomas Huthcheck-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
205a3780b22SJuan Quintelacheck-qtest-i386-$(CONFIG_RTL8139_PCI) += tests/test-filter-redirector$(EXESUF)
2062656bfd9SJuan Quintelacheck-qtest-i386-y += tests/migration-test$(EXESUF)
2074b9b7000SDr. David Alan Gilbertcheck-qtest-i386-y += tests/test-announce-self$(EXESUF)
2086efef58eSEduardo Habkostcheck-qtest-i386-y += tests/test-x86-cpuid-compat$(EXESUF)
20963baf8bfSIgor Mammedovcheck-qtest-i386-y += tests/numa-test$(EXESUF)
2100ee2e9daSMarc-André Lureaucheck-qtest-x86_64-y += $(check-qtest-i386-y)
21129531542SThomas Huth
2127a6c377fSEric Blakecheck-qtest-alpha-y += tests/boot-serial-test$(EXESUF)
213c2077ec2SThomas Huthcheck-qtest-alpha-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
214d2ab58ffSThomas Huth
2157a6c377fSEric Blakecheck-qtest-hppa-y += tests/boot-serial-test$(EXESUF)
216c2077ec2SThomas Huthcheck-qtest-hppa-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
2173ff6dd47SRichard Henderson
218598a29f3SThomas Huthcheck-qtest-m68k-y = tests/boot-serial-test$(EXESUF)
219598a29f3SThomas Huth
2207a6c377fSEric Blakecheck-qtest-microblaze-y += tests/boot-serial-test$(EXESUF)
221acf53766SThomas Huth
222c9324bf5SThomas Huthcheck-qtest-mips-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
223c2077ec2SThomas Huthcheck-qtest-mips-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
224c9324bf5SThomas Huth
225c9324bf5SThomas Huthcheck-qtest-mips64-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
226c2077ec2SThomas Huthcheck-qtest-mips64-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
227c9324bf5SThomas Huth
228c9324bf5SThomas Huthcheck-qtest-mips64el-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
229c2077ec2SThomas Huthcheck-qtest-mips64el-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
230c9324bf5SThomas Huth
2317a6c377fSEric Blakecheck-qtest-moxie-y += tests/boot-serial-test$(EXESUF)
2327244edf2SThomas Huth
233c9324bf5SThomas Huthcheck-qtest-ppc-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
23429531542SThomas Huthcheck-qtest-ppc-y += tests/boot-order-test$(EXESUF)
23529531542SThomas Huthcheck-qtest-ppc-y += tests/prom-env-test$(EXESUF)
23629531542SThomas Huthcheck-qtest-ppc-y += tests/drive_del-test$(EXESUF)
237d2ab58ffSThomas Huthcheck-qtest-ppc-y += tests/boot-serial-test$(EXESUF)
238e1535780SThomas Huthcheck-qtest-ppc-$(CONFIG_M48T59) += tests/m48t59-test$(EXESUF)
23929531542SThomas Huth
2407a6c377fSEric Blakecheck-qtest-ppc64-y += $(check-qtest-ppc-y)
241e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_PSERIES) += tests/spapr-phb-test$(EXESUF)
2420d9d4872SDavid Hildenbrandcheck-qtest-ppc64-$(CONFIG_PSERIES) += tests/device-plug-test$(EXESUF)
243e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_POWERNV) += tests/pnv-xscom-test$(EXESUF)
2442656bfd9SJuan Quintelacheck-qtest-ppc64-y += tests/migration-test$(EXESUF)
2454b9b7000SDr. David Alan Gilbertcheck-qtest-ppc64-y += tests/test-announce-self$(EXESUF)
246e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_PSERIES) += tests/rtas-test$(EXESUF)
247d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
248bc19828dSJuan Quintelacheck-qtest-ppc64-$(CONFIG_USB_OHCI) += tests/usb-hcd-ohci-test$(EXESUF)
2497c0dfc33SJuan Quintelacheck-qtest-ppc64-$(CONFIG_USB_UHCI) += tests/usb-hcd-uhci-test$(EXESUF)
250c9b688b4SJuan Quintelacheck-qtest-ppc64-$(CONFIG_USB_XHCI_NEC) += tests/usb-hcd-xhci-test$(EXESUF)
251d616c12bSMarc-André Lureaucheck-qtest-ppc64-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
2527f57d58dSThomas Huthcheck-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
253a3780b22SJuan Quintelacheck-qtest-ppc64-$(CONFIG_RTL8139_PCI) += tests/test-filter-redirector$(EXESUF)
254e1535780SThomas Huthcheck-qtest-ppc64-$(CONFIG_VGA) += tests/display-vga-test$(EXESUF)
25563baf8bfSIgor Mammedovcheck-qtest-ppc64-y += tests/numa-test$(EXESUF)
2561336e608SJuan Quintelacheck-qtest-ppc64-$(CONFIG_IVSHMEM_DEVICE) += tests/ivshmem-test$(EXESUF)
25773a7d31eSThomas Huthcheck-qtest-ppc64-y += tests/cpu-plug-test$(EXESUF)
25829531542SThomas Huth
259c9324bf5SThomas Huthcheck-qtest-sh4-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
260c9324bf5SThomas Huth
261c9324bf5SThomas Huthcheck-qtest-sh4eb-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
262c9324bf5SThomas Huth
2637a6c377fSEric Blakecheck-qtest-sparc-y += tests/prom-env-test$(EXESUF)
2649c29830cSThomas Huthcheck-qtest-sparc-y += tests/m48t59-test$(EXESUF)
265e74fbf1fSThomas Huthcheck-qtest-sparc-y += tests/boot-serial-test$(EXESUF)
26629531542SThomas Huth
267c9324bf5SThomas Huthcheck-qtest-sparc64-$(CONFIG_ISA_TESTDEV) = tests/endianness-test$(EXESUF)
2686b591ad6SThomas Huthcheck-qtest-sparc64-y += tests/prom-env-test$(EXESUF)
269e74fbf1fSThomas Huthcheck-qtest-sparc64-y += tests/boot-serial-test$(EXESUF)
27029531542SThomas Huth
2717a6c377fSEric Blakecheck-qtest-arm-y += tests/tmp105-test$(EXESUF)
2725141d415SCédric Le Goatercheck-qtest-arm-y += tests/pca9552-test$(EXESUF)
2731f5c1cfbSThomas Huthcheck-qtest-arm-y += tests/ds1338-test$(EXESUF)
27417ff8e18SSteffen Görtzcheck-qtest-arm-y += tests/microbit-test$(EXESUF)
2757a2334f7SCédric Le Goatercheck-qtest-arm-y += tests/m25p80-test$(EXESUF)
276882fac37SDmitry Osipenkocheck-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
27752cb6817SThomas Huthcheck-qtest-arm-y += tests/boot-serial-test$(EXESUF)
278645d3cbeSSu Hangcheck-qtest-arm-y += tests/hexloader-test$(EXESUF)
27929531542SThomas Huth
28063baf8bfSIgor Mammedovcheck-qtest-aarch64-y = tests/numa-test$(EXESUF)
281ec2e988fSWei Huangcheck-qtest-aarch64-y += tests/boot-serial-test$(EXESUF)
282c02b3781SWei Huangcheck-qtest-aarch64-y += tests/migration-test$(EXESUF)
28363baf8bfSIgor Mammedov
2847a6c377fSEric Blakecheck-qtest-microblazeel-y += $(check-qtest-microblaze-y)
28529531542SThomas Huth
2867a6c377fSEric Blakecheck-qtest-xtensaeb-y += $(check-qtest-xtensa-y)
28746e7b706SFam Zheng
288d2ab58ffSThomas Huthcheck-qtest-s390x-y = tests/boot-serial-test$(EXESUF)
289b1b2feacSThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
290ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
291ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
292ea5bef49SThomas Huthcheck-qtest-s390x-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
2932f84a92eSThomas Huthcheck-qtest-s390x-y += tests/drive_del-test$(EXESUF)
2940d9d4872SDavid Hildenbrandcheck-qtest-s390x-y += tests/device-plug-test$(EXESUF)
29506d09a01SPaolo Bonzinicheck-qtest-s390x-y += tests/virtio-ccw-test$(EXESUF)
2967d8b00faSThomas Huthcheck-qtest-s390x-y += tests/cpu-plug-test$(EXESUF)
2975571dc82SThomas Huthcheck-qtest-s390x-y += tests/migration-test$(EXESUF)
298d2ab58ffSThomas Huth
2999c5a87e4SIgor Mammedovcheck-qtest-generic-y += tests/machine-none-test$(EXESUF)
30046e7b706SFam Zhengcheck-qtest-generic-y += tests/qom-test$(EXESUF)
30178f86a2bSThomas Huthcheck-qtest-generic-y += tests/test-hmp$(EXESUF)
30246e7b706SFam Zheng
30346e7b706SFam Zhengqapi-schema += alternate-any.json
30446e7b706SFam Zhengqapi-schema += alternate-array.json
30546e7b706SFam Zhengqapi-schema += alternate-base.json
30646e7b706SFam Zhengqapi-schema += alternate-clash.json
30746e7b706SFam Zhengqapi-schema += alternate-conflict-dict.json
308c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-bool.json
309c0644771SMarkus Armbrusterqapi-schema += alternate-conflict-enum-int.json
31046e7b706SFam Zhengqapi-schema += alternate-conflict-string.json
311fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-bool-string.json
312fda72ab4SEduardo Habkostqapi-schema += alternate-conflict-num-string.json
31346e7b706SFam Zhengqapi-schema += alternate-empty.json
31487adbbffSMarc-André Lureauqapi-schema += alternate-invalid-dict.json
31546e7b706SFam Zhengqapi-schema += alternate-nested.json
31646e7b706SFam Zhengqapi-schema += alternate-unknown.json
31746e7b706SFam Zhengqapi-schema += args-alternate.json
31846e7b706SFam Zhengqapi-schema += args-any.json
31946e7b706SFam Zhengqapi-schema += args-array-empty.json
32046e7b706SFam Zhengqapi-schema += args-array-unknown.json
321c818408eSEric Blakeqapi-schema += args-bad-boxed.json
322c818408eSEric Blakeqapi-schema += args-boxed-anon.json
323c818408eSEric Blakeqapi-schema += args-boxed-empty.json
324c818408eSEric Blakeqapi-schema += args-boxed-string.json
32546e7b706SFam Zhengqapi-schema += args-int.json
32646e7b706SFam Zhengqapi-schema += args-invalid.json
32746e7b706SFam Zhengqapi-schema += args-member-array-bad.json
32846e7b706SFam Zhengqapi-schema += args-member-case.json
32946e7b706SFam Zhengqapi-schema += args-member-unknown.json
33046e7b706SFam Zhengqapi-schema += args-name-clash.json
33146e7b706SFam Zhengqapi-schema += args-union.json
33246e7b706SFam Zhengqapi-schema += args-unknown.json
33346e7b706SFam Zhengqapi-schema += bad-base.json
33446e7b706SFam Zhengqapi-schema += bad-data.json
33546e7b706SFam Zhengqapi-schema += bad-ident.json
336967c8851SMarc-André Lureauqapi-schema += bad-if.json
337967c8851SMarc-André Lureauqapi-schema += bad-if-empty.json
338967c8851SMarc-André Lureauqapi-schema += bad-if-empty-list.json
339967c8851SMarc-André Lureauqapi-schema += bad-if-list.json
34046e7b706SFam Zhengqapi-schema += bad-type-bool.json
34146e7b706SFam Zhengqapi-schema += bad-type-dict.json
34246e7b706SFam Zhengqapi-schema += bad-type-int.json
34346e7b706SFam Zhengqapi-schema += base-cycle-direct.json
34446e7b706SFam Zhengqapi-schema += base-cycle-indirect.json
34546e7b706SFam Zhengqapi-schema += command-int.json
34646e7b706SFam Zhengqapi-schema += comments.json
347f641d06aSMarkus Armbrusterqapi-schema += doc-bad-alternate-member.json
348bdc001caSMarkus Armbrusterqapi-schema += doc-bad-command-arg.json
349cfa438ffSMarkus Armbrusterqapi-schema += doc-bad-section.json
3503313b612SMarc-André Lureauqapi-schema += doc-bad-symbol.json
351f641d06aSMarkus Armbrusterqapi-schema += doc-bad-union-member.json
3522028be8eSMarkus Armbrusterqapi-schema += doc-before-include.json
3532028be8eSMarkus Armbrusterqapi-schema += doc-before-pragma.json
3543313b612SMarc-André Lureauqapi-schema += doc-duplicated-arg.json
3553313b612SMarc-André Lureauqapi-schema += doc-duplicated-return.json
3563313b612SMarc-André Lureauqapi-schema += doc-duplicated-since.json
3573313b612SMarc-André Lureauqapi-schema += doc-empty-arg.json
3583313b612SMarc-André Lureauqapi-schema += doc-empty-section.json
3593313b612SMarc-André Lureauqapi-schema += doc-empty-symbol.json
36080d1f2e4SMarkus Armbrusterqapi-schema += doc-good.json
3613313b612SMarc-André Lureauqapi-schema += doc-interleaved-section.json
3623313b612SMarc-André Lureauqapi-schema += doc-invalid-end.json
3633313b612SMarc-André Lureauqapi-schema += doc-invalid-end2.json
3643313b612SMarc-André Lureauqapi-schema += doc-invalid-return.json
3653313b612SMarc-André Lureauqapi-schema += doc-invalid-section.json
3663313b612SMarc-André Lureauqapi-schema += doc-invalid-start.json
3673313b612SMarc-André Lureauqapi-schema += doc-missing-colon.json
3683313b612SMarc-André Lureauqapi-schema += doc-missing-expr.json
3693313b612SMarc-André Lureauqapi-schema += doc-missing-space.json
370cfa438ffSMarkus Armbrusterqapi-schema += doc-missing.json
3712028be8eSMarkus Armbrusterqapi-schema += doc-no-symbol.json
37246e7b706SFam Zhengqapi-schema += double-data.json
37346e7b706SFam Zhengqapi-schema += double-type.json
37446e7b706SFam Zhengqapi-schema += duplicate-key.json
37546e7b706SFam Zhengqapi-schema += empty.json
376ea738b21SMarc-André Lureauqapi-schema += enum-bad-member.json
37746e7b706SFam Zhengqapi-schema += enum-bad-name.json
37846e7b706SFam Zhengqapi-schema += enum-bad-prefix.json
37946e7b706SFam Zhengqapi-schema += enum-clash-member.json
380ea738b21SMarc-André Lureauqapi-schema += enum-dict-member-unknown.json
3816cc32b0eSMarc-André Lureauqapi-schema += enum-if-invalid.json
38246e7b706SFam Zhengqapi-schema += enum-int-member.json
38346e7b706SFam Zhengqapi-schema += enum-member-case.json
38446e7b706SFam Zhengqapi-schema += enum-missing-data.json
38546e7b706SFam Zhengqapi-schema += enum-wrong-data.json
38646e7b706SFam Zhengqapi-schema += escape-outside-string.json
38746e7b706SFam Zhengqapi-schema += escape-too-big.json
38846e7b706SFam Zhengqapi-schema += escape-too-short.json
389c818408eSEric Blakeqapi-schema += event-boxed-empty.json
39046e7b706SFam Zhengqapi-schema += event-case.json
39187adbbffSMarc-André Lureauqapi-schema += event-member-invalid-dict.json
39246e7b706SFam Zhengqapi-schema += event-nest-struct.json
39346e7b706SFam Zhengqapi-schema += flat-union-array-branch.json
39446e7b706SFam Zhengqapi-schema += flat-union-bad-base.json
39546e7b706SFam Zhengqapi-schema += flat-union-bad-discriminator.json
39646e7b706SFam Zhengqapi-schema += flat-union-base-any.json
39746e7b706SFam Zhengqapi-schema += flat-union-base-union.json
39846e7b706SFam Zhengqapi-schema += flat-union-clash-member.json
39946e7b706SFam Zhengqapi-schema += flat-union-empty.json
40046e7b706SFam Zhengqapi-schema += flat-union-inline.json
40187adbbffSMarc-André Lureauqapi-schema += flat-union-inline-invalid-dict.json
40246e7b706SFam Zhengqapi-schema += flat-union-int-branch.json
40346e7b706SFam Zhengqapi-schema += flat-union-invalid-branch-key.json
40446e7b706SFam Zhengqapi-schema += flat-union-invalid-discriminator.json
405ccadd6bcSMarc-André Lureauqapi-schema += flat-union-invalid-if-discriminator.json
40646e7b706SFam Zhengqapi-schema += flat-union-no-base.json
40746e7b706SFam Zhengqapi-schema += flat-union-optional-discriminator.json
40846e7b706SFam Zhengqapi-schema += flat-union-string-discriminator.json
40946e7b706SFam Zhengqapi-schema += funny-char.json
41046e7b706SFam Zhengqapi-schema += ident-with-escape.json
41146e7b706SFam Zhengqapi-schema += include-before-err.json
41246e7b706SFam Zhengqapi-schema += include-cycle.json
413bc52d03fSMarkus Armbrusterqapi-schema += include-extra-junk.json
41446e7b706SFam Zhengqapi-schema += include-format-err.json
41546e7b706SFam Zhengqapi-schema += include-nested-err.json
41646e7b706SFam Zhengqapi-schema += include-no-file.json
41746e7b706SFam Zhengqapi-schema += include-non-file.json
41846e7b706SFam Zhengqapi-schema += include-repetition.json
41946e7b706SFam Zhengqapi-schema += include-self-cycle.json
42046e7b706SFam Zhengqapi-schema += include-simple.json
42146e7b706SFam Zhengqapi-schema += indented-expr.json
42246e7b706SFam Zhengqapi-schema += leading-comma-list.json
42346e7b706SFam Zhengqapi-schema += leading-comma-object.json
42446e7b706SFam Zhengqapi-schema += missing-colon.json
42546e7b706SFam Zhengqapi-schema += missing-comma-list.json
42646e7b706SFam Zhengqapi-schema += missing-comma-object.json
42746e7b706SFam Zhengqapi-schema += missing-type.json
42846e7b706SFam Zhengqapi-schema += nested-struct-data.json
42987adbbffSMarc-André Lureauqapi-schema += nested-struct-data-invalid-dict.json
43046e7b706SFam Zhengqapi-schema += non-objects.json
4311a1b11dcSPeter Xuqapi-schema += oob-test.json
4327b13f2c2SIgor Mammedovqapi-schema += allow-preconfig-test.json
433bc52d03fSMarkus Armbrusterqapi-schema += pragma-doc-required-crap.json
434bc52d03fSMarkus Armbrusterqapi-schema += pragma-extra-junk.json
4352cfbae3cSMarkus Armbrusterqapi-schema += pragma-name-case-whitelist-crap.json
436bc52d03fSMarkus Armbrusterqapi-schema += pragma-non-dict.json
4371554a8faSMarkus Armbrusterqapi-schema += pragma-returns-whitelist-crap.json
43846e7b706SFam Zhengqapi-schema += qapi-schema-test.json
43946e7b706SFam Zhengqapi-schema += quoted-structural-chars.json
44046e7b706SFam Zhengqapi-schema += redefined-builtin.json
44146e7b706SFam Zhengqapi-schema += redefined-command.json
44246e7b706SFam Zhengqapi-schema += redefined-event.json
44346e7b706SFam Zhengqapi-schema += redefined-type.json
44446e7b706SFam Zhengqapi-schema += reserved-command-q.json
44546e7b706SFam Zhengqapi-schema += reserved-enum-q.json
44646e7b706SFam Zhengqapi-schema += reserved-member-has.json
44746e7b706SFam Zhengqapi-schema += reserved-member-q.json
44846e7b706SFam Zhengqapi-schema += reserved-member-u.json
44946e7b706SFam Zhengqapi-schema += reserved-member-underscore.json
45046e7b706SFam Zhengqapi-schema += reserved-type-kind.json
45146e7b706SFam Zhengqapi-schema += reserved-type-list.json
45246e7b706SFam Zhengqapi-schema += returns-alternate.json
45346e7b706SFam Zhengqapi-schema += returns-array-bad.json
45446e7b706SFam Zhengqapi-schema += returns-dict.json
45546e7b706SFam Zhengqapi-schema += returns-unknown.json
45646e7b706SFam Zhengqapi-schema += returns-whitelist.json
45746e7b706SFam Zhengqapi-schema += struct-base-clash-deep.json
45846e7b706SFam Zhengqapi-schema += struct-base-clash.json
45946e7b706SFam Zhengqapi-schema += struct-data-invalid.json
46087adbbffSMarc-André Lureauqapi-schema += struct-member-invalid-dict.json
46146e7b706SFam Zhengqapi-schema += struct-member-invalid.json
46246e7b706SFam Zhengqapi-schema += trailing-comma-list.json
46346e7b706SFam Zhengqapi-schema += trailing-comma-object.json
46446e7b706SFam Zhengqapi-schema += type-bypass-bad-gen.json
46546e7b706SFam Zhengqapi-schema += unclosed-list.json
46646e7b706SFam Zhengqapi-schema += unclosed-object.json
46746e7b706SFam Zhengqapi-schema += unclosed-string.json
46846e7b706SFam Zhengqapi-schema += unicode-str.json
469707fb2d3SMarkus Armbrusterqapi-schema += union-base-empty.json
47046e7b706SFam Zhengqapi-schema += union-base-no-discriminator.json
47146e7b706SFam Zhengqapi-schema += union-branch-case.json
47287adbbffSMarc-André Lureauqapi-schema += union-branch-invalid-dict.json
47346e7b706SFam Zhengqapi-schema += union-clash-branches.json
47446e7b706SFam Zhengqapi-schema += union-empty.json
47546e7b706SFam Zhengqapi-schema += union-invalid-base.json
47646e7b706SFam Zhengqapi-schema += union-optional-branch.json
47746e7b706SFam Zhengqapi-schema += union-unknown.json
47846e7b706SFam Zhengqapi-schema += unknown-escape.json
47946e7b706SFam Zhengqapi-schema += unknown-expr-key.json
4803313b612SMarc-André Lureau
4813313b612SMarc-André Lureau
48246e7b706SFam Zhengcheck-qapi-schema-y := $(addprefix tests/qapi-schema/, $(qapi-schema))
48346e7b706SFam Zheng
484709395f8SMarkus ArmbrusterGENERATED_FILES += tests/test-qapi-types.h \
485709395f8SMarkus Armbruster	tests/include/test-qapi-types-sub-module.h \
486709395f8SMarkus Armbruster	tests/test-qapi-types-sub-sub-module.h \
487709395f8SMarkus Armbruster	tests/test-qapi-visit.h \
488709395f8SMarkus Armbruster	tests/include/test-qapi-visit-sub-module.h \
489709395f8SMarkus Armbruster	tests/test-qapi-visit-sub-sub-module.h \
490709395f8SMarkus Armbruster	tests/test-qapi-commands.h \
491709395f8SMarkus Armbruster	tests/include/test-qapi-commands-sub-module.h \
492709395f8SMarkus Armbruster	tests/test-qapi-commands-sub-sub-module.h \
493709395f8SMarkus Armbruster	tests/test-qapi-events.h \
494709395f8SMarkus Armbruster	tests/include/test-qapi-events-sub-module.h \
495709395f8SMarkus Armbruster	tests/test-qapi-events-sub-sub-module.h \
496eb815e24SMarkus Armbruster	tests/test-qapi-introspect.h
49746e7b706SFam Zheng
49801b2ffceSMarc-André Lureautest-obj-y = tests/check-qnum.o tests/check-qstring.o tests/check-qdict.o \
4991b76e838SMax Reitz	tests/check-qlist.o tests/check-qnull.o tests/check-qobject.o \
500382176b4SMarc-André Lureau	tests/check-qjson.o tests/check-qlit.o \
5010bcc8e5bSMarkus Armbruster	tests/check-block-qtest.o \
50246e7b706SFam Zheng	tests/test-coroutine.o tests/test-string-output-visitor.o \
503b3db211fSDaniel P. Berrange	tests/test-string-input-visitor.o tests/test-qobject-output-visitor.o \
504a15fcc3cSEric Blake	tests/test-clone-visitor.o \
50577c47de2SMarkus Armbruster	tests/test-qobject-input-visitor.o \
506834a3f34SMarkus Armbruster	tests/test-qmp-cmds.o tests/test-visitor-serialization.o \
50746e7b706SFam Zheng	tests/test-x86-cpuid.o tests/test-mul64.o tests/test-int128.o \
50846e7b706SFam Zheng	tests/test-opts-visitor.o tests/test-qmp-event.o \
509ff9249b7SEmilio G. Cota	tests/rcutorture.o tests/test-rcu-list.o \
51090487e45SEmilio G. Cota	tests/test-rcu-simpleq.o \
511dbf8862aSEmilio G. Cota	tests/test-rcu-tailq.o \
512f539fbe3SJose Ricardo Ziviani	tests/test-qdist.o tests/test-shift128.o \
513070e3edcSEmilio G. Cota	tests/test-qht.o tests/qht-bench.o tests/test-qht-par.o \
51482fdfcbeSEmilio G. Cota	tests/atomic_add-bench.o tests/atomic64-bench.o
51546e7b706SFam Zheng
51646e7b706SFam Zheng$(test-obj-y): QEMU_INCLUDES += -Itests
51746e7b706SFam ZhengQEMU_CFLAGS += -I$(SRC_PATH)/tests
51846e7b706SFam Zheng
51946e7b706SFam Zheng
52046e7b706SFam Zheng# Deps that are common to various different sets of tests below
521ebedb37cSPaolo Bonzinitest-util-obj-y = libqemuutil.a
52246e7b706SFam Zhengtest-qom-obj-y = $(qom-obj-y) $(test-util-obj-y)
523709395f8SMarkus Armbrustertest-qapi-obj-y = tests/test-qapi-types.o \
524709395f8SMarkus Armbruster	tests/include/test-qapi-types-sub-module.o \
525709395f8SMarkus Armbruster	tests/test-qapi-types-sub-sub-module.o \
526709395f8SMarkus Armbruster	tests/test-qapi-visit.o \
527709395f8SMarkus Armbruster	tests/include/test-qapi-visit-sub-module.o \
528709395f8SMarkus Armbruster	tests/test-qapi-visit-sub-sub-module.o \
529a9529100SMarkus Armbruster	tests/test-qapi-introspect.o \
53046e7b706SFam Zheng	$(test-qom-obj-y)
531b76806d4SDaniel P. Berrangebenchmark-crypto-obj-y = $(authz-obj-y) $(crypto-obj-y) $(test-qom-obj-y)
532b76806d4SDaniel P. Berrangetest-crypto-obj-y = $(authz-obj-y) $(crypto-obj-y) $(test-qom-obj-y)
53346e7b706SFam Zhengtest-io-obj-y = $(io-obj-y) $(test-crypto-obj-y)
534fb5c4ebcSDaniel P. Berrangétest-authz-obj-y = $(test-qom-obj-y) $(authz-obj-y)
5350c330a73SPaolo Bonzinitest-block-obj-y = $(block-obj-y) $(test-io-obj-y) tests/iothread.o
53646e7b706SFam Zheng
53701b2ffceSMarc-André Lureautests/check-qnum$(EXESUF): tests/check-qnum.o $(test-util-obj-y)
53846e7b706SFam Zhengtests/check-qstring$(EXESUF): tests/check-qstring.o $(test-util-obj-y)
53946e7b706SFam Zhengtests/check-qdict$(EXESUF): tests/check-qdict.o $(test-util-obj-y)
5400bcc8e5bSMarkus Armbrustertests/check-block-qdict$(EXESUF): tests/check-block-qdict.o $(test-util-obj-y)
54146e7b706SFam Zhengtests/check-qlist$(EXESUF): tests/check-qlist.o $(test-util-obj-y)
54246e7b706SFam Zhengtests/check-qnull$(EXESUF): tests/check-qnull.o $(test-util-obj-y)
5431b76e838SMax Reitztests/check-qobject$(EXESUF): tests/check-qobject.o $(test-util-obj-y)
54446e7b706SFam Zhengtests/check-qjson$(EXESUF): tests/check-qjson.o $(test-util-obj-y)
545382176b4SMarc-André Lureautests/check-qlit$(EXESUF): tests/check-qlit.o $(test-util-obj-y)
54646e7b706SFam Zhengtests/check-qom-interface$(EXESUF): tests/check-qom-interface.o $(test-qom-obj-y)
54746e7b706SFam Zhengtests/check-qom-proplist$(EXESUF): tests/check-qom-proplist.o $(test-qom-obj-y)
548ea3af47dSMarc-André Lureau
549c2b38b27SPaolo Bonzinitests/test-char$(EXESUF): tests/test-char.o $(test-util-obj-y) $(qtest-obj-y) $(test-io-obj-y) $(chardev-obj-y)
55046e7b706SFam Zhengtests/test-coroutine$(EXESUF): tests/test-coroutine.o $(test-block-obj-y)
55146e7b706SFam Zhengtests/test-aio$(EXESUF): tests/test-aio.o $(test-block-obj-y)
5520c330a73SPaolo Bonzinitests/test-aio-multithread$(EXESUF): tests/test-aio-multithread.o $(test-block-obj-y)
55346e7b706SFam Zhengtests/test-throttle$(EXESUF): tests/test-throttle.o $(test-block-obj-y)
554881cfd17SKevin Wolftests/test-bdrv-drain$(EXESUF): tests/test-bdrv-drain.o $(test-block-obj-y) $(test-util-obj-y)
5552dbfadf6SVladimir Sementsov-Ogievskiytests/test-bdrv-graph-mod$(EXESUF): tests/test-bdrv-graph-mod.o $(test-block-obj-y) $(test-util-obj-y)
5569ef8112aSAlberto Garciatests/test-blockjob$(EXESUF): tests/test-blockjob.o $(test-block-obj-y) $(test-util-obj-y)
55746e7b706SFam Zhengtests/test-blockjob-txn$(EXESUF): tests/test-blockjob-txn.o $(test-block-obj-y) $(test-util-obj-y)
558ad0df3e0SKevin Wolftests/test-block-backend$(EXESUF): tests/test-block-backend.o $(test-block-obj-y) $(test-util-obj-y)
5594720cbeeSKevin Wolftests/test-block-iothread$(EXESUF): tests/test-block-iothread.o $(test-block-obj-y) $(test-util-obj-y)
560aef96d7dSFam Zhengtests/test-image-locking$(EXESUF): tests/test-image-locking.o $(test-block-obj-y) $(test-util-obj-y)
56146e7b706SFam Zhengtests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(test-block-obj-y)
56246e7b706SFam Zhengtests/test-iov$(EXESUF): tests/test-iov.o $(test-util-obj-y)
563a3b52535SVladimir Sementsov-Ogievskiytests/test-hbitmap$(EXESUF): tests/test-hbitmap.o $(test-util-obj-y) $(test-crypto-obj-y)
56446e7b706SFam Zhengtests/test-x86-cpuid$(EXESUF): tests/test-x86-cpuid.o
565aa3544c3SJuan Quintelatests/test-xbzrle$(EXESUF): tests/test-xbzrle.o migration/xbzrle.o migration/page_cache.o $(test-util-obj-y)
56605cb8ed5SAlistair Francistests/test-cutils$(EXESUF): tests/test-cutils.o util/cutils.o $(test-util-obj-y)
56746e7b706SFam Zhengtests/test-int128$(EXESUF): tests/test-int128.o
56846e7b706SFam Zhengtests/rcutorture$(EXESUF): tests/rcutorture.o $(test-util-obj-y)
56946e7b706SFam Zhengtests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y)
57090487e45SEmilio G. Cotatests/test-rcu-simpleq$(EXESUF): tests/test-rcu-simpleq.o $(test-util-obj-y)
571dbf8862aSEmilio G. Cotatests/test-rcu-tailq$(EXESUF): tests/test-rcu-tailq.o $(test-util-obj-y)
572ff9249b7SEmilio G. Cotatests/test-qdist$(EXESUF): tests/test-qdist.o $(test-util-obj-y)
5731a95404fSEmilio G. Cotatests/test-qht$(EXESUF): tests/test-qht.o $(test-util-obj-y)
574896a9ee9SEmilio G. Cotatests/test-qht-par$(EXESUF): tests/test-qht-par.o tests/qht-bench$(EXESUF) $(test-util-obj-y)
575515864a0SEmilio G. Cotatests/qht-bench$(EXESUF): tests/qht-bench.o $(test-util-obj-y)
576efad6682SRichard Hendersontests/test-bufferiszero$(EXESUF): tests/test-bufferiszero.o $(test-util-obj-y)
577070e3edcSEmilio G. Cotatests/atomic_add-bench$(EXESUF): tests/atomic_add-bench.o $(test-util-obj-y)
57882fdfcbeSEmilio G. Cotatests/atomic64-bench$(EXESUF): tests/atomic64-bench.o $(test-util-obj-y)
57946e7b706SFam Zheng
5803ac1f813SEmilio G. Cotatests/fp/%:
5813ac1f813SEmilio G. Cota	$(MAKE) -C $(dir $@) $(notdir $@)
5823ac1f813SEmilio G. Cota
58346e7b706SFam Zhengtests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \
58446e7b706SFam Zheng	hw/core/qdev.o hw/core/qdev-properties.o hw/core/hotplug.o\
58546e7b706SFam Zheng	hw/core/bus.o \
58646e7b706SFam Zheng	hw/core/irq.o \
58746e7b706SFam Zheng	hw/core/fw-path-provider.o \
5882f7b92a0SPaolo Bonzini	hw/core/reset.o \
58946e7b706SFam Zheng	$(test-qapi-obj-y)
59046e7b706SFam Zhengtests/test-vmstate$(EXESUF): tests/test-vmstate.o \
591576d1abcSJuan Quintela	migration/vmstate.o migration/vmstate-types.o migration/qemu-file.o \
59246e7b706SFam Zheng        migration/qemu-file-channel.o migration/qjson.o \
59346e7b706SFam Zheng	$(test-io-obj-y)
594c2b38b27SPaolo Bonzinitests/test-timed-average$(EXESUF): tests/test-timed-average.o $(test-util-obj-y)
595ebedb37cSPaolo Bonzinitests/test-base64$(EXESUF): tests/test-base64.o $(test-util-obj-y)
5969ee24e98SPaolo Bonzinitests/ptimer-test$(EXESUF): tests/ptimer-test.o tests/ptimer-test-stubs.o hw/core/ptimer.o
59746e7b706SFam Zheng
59846e7b706SFam Zhengtests/test-logging$(EXESUF): tests/test-logging.o $(test-util-obj-y)
59946e7b706SFam Zheng
600b3110466SChanglong Xietests/test-replication$(EXESUF): tests/test-replication.o $(test-util-obj-y) \
601b3110466SChanglong Xie	$(test-block-obj-y)
602b3110466SChanglong Xie
603fb0bc835SMarkus Armbrustertests/test-qapi-types.c tests/test-qapi-types.h \
604709395f8SMarkus Armbrustertests/include/test-qapi-types-sub-module.c \
605709395f8SMarkus Armbrustertests/include/test-qapi-types-sub-module.h \
606709395f8SMarkus Armbrustertests/test-qapi-types-sub-sub-module.c \
607709395f8SMarkus Armbrustertests/test-qapi-types-sub-sub-module.h \
608fb0bc835SMarkus Armbrustertests/test-qapi-visit.c tests/test-qapi-visit.h \
609709395f8SMarkus Armbrustertests/include/test-qapi-visit-sub-module.c \
610709395f8SMarkus Armbrustertests/include/test-qapi-visit-sub-module.h \
611709395f8SMarkus Armbrustertests/test-qapi-visit-sub-sub-module.c \
612709395f8SMarkus Armbrustertests/test-qapi-visit-sub-sub-module.h \
613eb815e24SMarkus Armbrustertests/test-qapi-commands.h tests/test-qapi-commands.c \
614709395f8SMarkus Armbrustertests/include/test-qapi-commands-sub-module.h \
615709395f8SMarkus Armbrustertests/include/test-qapi-commands-sub-module.c \
616709395f8SMarkus Armbrustertests/test-qapi-commands-sub-sub-module.h \
617709395f8SMarkus Armbrustertests/test-qapi-commands-sub-sub-module.c \
618eb815e24SMarkus Armbrustertests/test-qapi-events.c tests/test-qapi-events.h \
619709395f8SMarkus Armbrustertests/include/test-qapi-events-sub-module.c \
620709395f8SMarkus Armbrustertests/include/test-qapi-events-sub-module.h \
621709395f8SMarkus Armbrustertests/test-qapi-events-sub-sub-module.c \
622709395f8SMarkus Armbrustertests/test-qapi-events-sub-sub-module.h \
623eb815e24SMarkus Armbrustertests/test-qapi-introspect.c tests/test-qapi-introspect.h: \
624fb0bc835SMarkus Armbrustertests/test-qapi-gen-timestamp ;
625709395f8SMarkus Armbrustertests/test-qapi-gen-timestamp: \
626709395f8SMarkus Armbruster		$(SRC_PATH)/tests/qapi-schema/qapi-schema-test.json \
627709395f8SMarkus Armbruster		$(SRC_PATH)/tests/qapi-schema/include/sub-module.json \
628709395f8SMarkus Armbruster		$(SRC_PATH)/tests/qapi-schema/sub-sub-module.json \
629709395f8SMarkus Armbruster		$(qapi-py)
6300d6b93deSMatthias Maier	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
631fb0bc835SMarkus Armbruster		-o tests -p "test-" $<, \
632fb0bc835SMarkus Armbruster		"GEN","$(@:%-timestamp=%)")
633fb0bc835SMarkus Armbruster	@>$@
63446e7b706SFam Zheng
635fb0bc835SMarkus Armbrustertests/qapi-schema/doc-good.test.texi: $(SRC_PATH)/tests/qapi-schema/doc-good.json $(qapi-py)
6360d6b93deSMatthias Maier	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
637fb0bc835SMarkus Armbruster		-o tests/qapi-schema -p "doc-good-" $<, \
638fb0bc835SMarkus Armbruster		"GEN","$@")
639fb0bc835SMarkus Armbruster	@mv tests/qapi-schema/doc-good-qapi-doc.texi $@
640fb0bc835SMarkus Armbruster	@rm -f tests/qapi-schema/doc-good-qapi-*.[ch] tests/qapi-schema/doc-good-qmp-*.[ch]
64180d1f2e4SMarkus Armbruster
64246e7b706SFam Zhengtests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y)
64346e7b706SFam Zhengtests/test-string-input-visitor$(EXESUF): tests/test-string-input-visitor.o $(test-qapi-obj-y)
644a9529100SMarkus Armbrustertests/test-qmp-event$(EXESUF): tests/test-qmp-event.o $(test-qapi-obj-y) tests/test-qapi-events.o
645b3db211fSDaniel P. Berrangetests/test-qobject-output-visitor$(EXESUF): tests/test-qobject-output-visitor.o $(test-qapi-obj-y)
646a15fcc3cSEric Blaketests/test-clone-visitor$(EXESUF): tests/test-clone-visitor.o $(test-qapi-obj-y)
647b3db211fSDaniel P. Berrangetests/test-qobject-input-visitor$(EXESUF): tests/test-qobject-input-visitor.o $(test-qapi-obj-y)
648eb815e24SMarkus Armbrustertests/test-qmp-cmds$(EXESUF): tests/test-qmp-cmds.o tests/test-qapi-commands.o $(test-qapi-obj-y)
64946e7b706SFam Zhengtests/test-visitor-serialization$(EXESUF): tests/test-visitor-serialization.o $(test-qapi-obj-y)
65046e7b706SFam Zhengtests/test-opts-visitor$(EXESUF): tests/test-opts-visitor.o $(test-qapi-obj-y)
65146e7b706SFam Zheng
652f539fbe3SJose Ricardo Zivianitests/test-shift128$(EXESUF): tests/test-shift128.o $(test-util-obj-y)
65346e7b706SFam Zhengtests/test-mul64$(EXESUF): tests/test-mul64.o $(test-util-obj-y)
65446e7b706SFam Zhengtests/test-bitops$(EXESUF): tests/test-bitops.o $(test-util-obj-y)
655c3f8962fSAlex Bennéetests/test-bitcnt$(EXESUF): tests/test-bitcnt.o $(test-util-obj-y)
65646e7b706SFam Zhengtests/test-crypto-hash$(EXESUF): tests/test-crypto-hash.o $(test-crypto-obj-y)
6570128cd29SLongpeng(Mike)tests/benchmark-crypto-hash$(EXESUF): tests/benchmark-crypto-hash.o $(test-crypto-obj-y)
6584fd460bfSLongpeng(Mike)tests/test-crypto-hmac$(EXESUF): tests/test-crypto-hmac.o $(test-crypto-obj-y)
659c7a9af4bSLongpeng(Mike)tests/benchmark-crypto-hmac$(EXESUF): tests/benchmark-crypto-hmac.o $(test-crypto-obj-y)
66046e7b706SFam Zhengtests/test-crypto-cipher$(EXESUF): tests/test-crypto-cipher.o $(test-crypto-obj-y)
6611efd9d5eSLongpeng(Mike)tests/benchmark-crypto-cipher$(EXESUF): tests/benchmark-crypto-cipher.o $(test-crypto-obj-y)
66246e7b706SFam Zhengtests/test-crypto-secret$(EXESUF): tests/test-crypto-secret.o $(test-crypto-obj-y)
66346e7b706SFam Zhengtests/test-crypto-xts$(EXESUF): tests/test-crypto-xts.o $(test-crypto-obj-y)
66446e7b706SFam Zheng
66546e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-cflags := $(TASN1_CFLAGS)
66646e7b706SFam Zhengtests/crypto-tls-x509-helpers.o-libs := $(TASN1_LIBS)
66746e7b706SFam Zhengtests/pkix_asn1_tab.o-cflags := $(TASN1_CFLAGS)
66846e7b706SFam Zheng
66946e7b706SFam Zhengtests/test-crypto-tlscredsx509.o-cflags := $(TASN1_CFLAGS)
67046e7b706SFam Zhengtests/test-crypto-tlscredsx509$(EXESUF): tests/test-crypto-tlscredsx509.o \
67146e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o $(test-crypto-obj-y)
67246e7b706SFam Zheng
67346e7b706SFam Zhengtests/test-crypto-tlssession.o-cflags := $(TASN1_CFLAGS)
67446e7b706SFam Zhengtests/test-crypto-tlssession$(EXESUF): tests/test-crypto-tlssession.o \
675e1a6dc91SRichard W.M. Jones	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \
676e1a6dc91SRichard W.M. Jones	tests/crypto-tls-psk-helpers.o \
677e1a6dc91SRichard W.M. Jones        $(test-crypto-obj-y)
67890e33dfeSDaniel P. Berrangétests/test-util-filemonitor$(EXESUF): tests/test-util-filemonitor.o \
67990e33dfeSDaniel P. Berrangé	$(test-util-obj-y)
68058dc31f1SDaniel P. Berrangetests/test-util-sockets$(EXESUF): tests/test-util-sockets.o \
68158dc31f1SDaniel P. Berrange	tests/socket-helpers.o $(test-util-obj-y)
682fb5c4ebcSDaniel P. Berrangétests/test-authz-simple$(EXESUF): tests/test-authz-simple.o $(test-authz-obj-y)
683c8c99887SDaniel P. Berrangetests/test-authz-list$(EXESUF): tests/test-authz-list.o $(test-authz-obj-y)
68455d86984SDaniel P. Berrangétests/test-authz-listfile$(EXESUF): tests/test-authz-listfile.o $(test-authz-obj-y)
6858953caf3SDaniel P. Berrangetests/test-authz-pam$(EXESUF): tests/test-authz-pam.o $(test-authz-obj-y)
68646e7b706SFam Zhengtests/test-io-task$(EXESUF): tests/test-io-task.o $(test-io-obj-y)
68746e7b706SFam Zhengtests/test-io-channel-socket$(EXESUF): tests/test-io-channel-socket.o \
6889b589ffbSDaniel P. Berrange        tests/io-channel-helpers.o tests/socket-helpers.o $(test-io-obj-y)
689b21373d0SStefan Bergertests/tpm-crb-swtpm-test$(EXESUF): tests/tpm-crb-swtpm-test.o tests/tpm-emu.o \
6902b4ccb87SStefan Berger	tests/tpm-util.o tests/tpm-tests.o $(test-io-obj-y)
6910e6ca954SStefan Bergertests/tpm-crb-test$(EXESUF): tests/tpm-crb-test.o tests/tpm-emu.o $(test-io-obj-y)
69270663851SStefan Bergertests/tpm-tis-swtpm-test$(EXESUF): tests/tpm-tis-swtpm-test.o tests/tpm-emu.o \
69370663851SStefan Berger	tests/tpm-util.o tests/tpm-tests.o $(test-io-obj-y)
694adb0e917SStefan Bergertests/tpm-tis-test$(EXESUF): tests/tpm-tis-test.o tests/tpm-emu.o $(test-io-obj-y)
69546e7b706SFam Zhengtests/test-io-channel-file$(EXESUF): tests/test-io-channel-file.o \
69646e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
69746e7b706SFam Zhengtests/test-io-channel-tls$(EXESUF): tests/test-io-channel-tls.o \
69846e7b706SFam Zheng	tests/crypto-tls-x509-helpers.o tests/pkix_asn1_tab.o \
69946e7b706SFam Zheng	tests/io-channel-helpers.o $(test-io-obj-y)
70046e7b706SFam Zhengtests/test-io-channel-command$(EXESUF): tests/test-io-channel-command.o \
70146e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
70246e7b706SFam Zhengtests/test-io-channel-buffer$(EXESUF): tests/test-io-channel-buffer.o \
70346e7b706SFam Zheng        tests/io-channel-helpers.o $(test-io-obj-y)
70446e7b706SFam Zhengtests/test-crypto-pbkdf$(EXESUF): tests/test-crypto-pbkdf.o $(test-crypto-obj-y)
70546e7b706SFam Zhengtests/test-crypto-ivgen$(EXESUF): tests/test-crypto-ivgen.o $(test-crypto-obj-y)
70646e7b706SFam Zhengtests/test-crypto-afsplit$(EXESUF): tests/test-crypto-afsplit.o $(test-crypto-obj-y)
70746e7b706SFam Zhengtests/test-crypto-block$(EXESUF): tests/test-crypto-block.o $(test-crypto-obj-y)
70846e7b706SFam Zheng
709fc281c80SEmanuele Giuseppe Espositolibqgraph-obj-y = tests/libqos/qgraph.o
710fc281c80SEmanuele Giuseppe Esposito
711fc281c80SEmanuele Giuseppe Espositolibqos-obj-y = $(libqgraph-obj-y) tests/libqos/pci.o tests/libqos/fw_cfg.o
7125cb8f0dbSPaolo Bonzinilibqos-obj-y += tests/libqos/malloc.o
71346e7b706SFam Zhenglibqos-obj-y += tests/libqos/i2c.o tests/libqos/libqos.o
7148d6ef7c9SLaurent Vivierlibqos-spapr-obj-y = $(libqos-obj-y) tests/libqos/malloc-spapr.o
7158d6ef7c9SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/libqos-spapr.o
716eeddd59fSLaurent Vivierlibqos-spapr-obj-y += tests/libqos/rtas.o
717cf716b31SLaurent Vivierlibqos-spapr-obj-y += tests/libqos/pci-spapr.o
71846e7b706SFam Zhenglibqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o
71946e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/malloc-pc.o tests/libqos/libqos-pc.o
72046e7b706SFam Zhenglibqos-pc-obj-y += tests/libqos/ahci.o
72146e7b706SFam Zhenglibqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o
72246e7b706SFam Zhenglibqos-imx-obj-y = $(libqos-obj-y) tests/libqos/i2c-imx.o
723aa9026fdSLaurent Vivierlibqos-usb-obj-y = $(libqos-spapr-obj-y) $(libqos-pc-obj-y) tests/libqos/usb.o
724fc281c80SEmanuele Giuseppe Esposito
72585af0057SEmanuele Giuseppe Esposito# Devices
72685af0057SEmanuele Giuseppe Espositoqos-test-obj-y = tests/qos-test.o $(libqgraph-obj-y)
727b8782d2aSEmanuele Giuseppe Espositoqos-test-obj-y += $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
728a4cc719bSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/e1000e.o
729a0a9ba66SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/sdhci.o
7300793a889SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/tpci200.o
73119e3d979SPaolo Bonziniqos-test-obj-y += tests/libqos/virtio.o
7329d447257SEmanuele Giuseppe Espositoqos-test-obj-$(CONFIG_VIRTFS) += tests/libqos/virtio-9p.o
73329241067SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-balloon.o
734a3713493SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-blk.o
73519e3d979SPaolo Bonziniqos-test-obj-y += tests/libqos/virtio-mmio.o
736583349d1SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-net.o
73719e3d979SPaolo Bonziniqos-test-obj-y += tests/libqos/virtio-pci.o
738d3d400d3SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-rng.o
7398f41a3a8SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-scsi.o
740b3e7dc87SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/virtio-serial.o
74185af0057SEmanuele Giuseppe Esposito
74246113f88SEmanuele Giuseppe Esposito# Machines
743555299cbSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/aarch64-xlnx-zcu102-machine.o
744ad60d6d4SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-raspi2-machine.o
745aea9ac51SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-sabrelite-machine.o
746c9599c9aSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-smdkc210-machine.o
747d18d2b57SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-virt-machine.o
7482013199dSEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/arm-xilinx-zynq-a9-machine.o
7497985b582SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/ppc64_pseries-machine.o
75046113f88SEmanuele Giuseppe Espositoqos-test-obj-y += tests/libqos/x86_64_pc-machine.o
75146113f88SEmanuele Giuseppe Esposito
752757c6eacSEmanuele Giuseppe Esposito# Tests
75386dc943fSEmanuele Giuseppe Espositoqos-test-obj-y += tests/ac97-test.o
754b026393cSEmanuele Giuseppe Espositoqos-test-obj-y += tests/e1000e-test.o
755*31692b2eSEmanuele Giuseppe Espositoqos-test-obj-y += tests/ipoctal232-test.o
756db1f2668SPaolo Bonziniqos-test-obj-y += tests/pci-test.o
757757c6eacSEmanuele Giuseppe Espositoqos-test-obj-y += tests/sdhci-test.o
758a3ebd6e0SPaolo Bonziniqos-test-obj-$(CONFIG_VHOST_NET_USER) += tests/vhost-user-test.o $(chardev-obj-y) $(test-io-obj-y)
75950d982e7SPaolo Bonziniqos-test-obj-y += tests/virtio-test.o
760dfbe8b43SEmanuele Giuseppe Espositoqos-test-obj-$(CONFIG_VIRTFS) += tests/virtio-9p-test.o
7615cb8f0dbSPaolo Bonziniqos-test-obj-y += tests/virtio-blk-test.o
7626ae333f9SEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-net-test.o
763a25f56aeSEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-rng-test.o
7644e200798SEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-scsi-test.o
7651657291aSEmanuele Giuseppe Espositoqos-test-obj-y += tests/virtio-serial-test.o
766757c6eacSEmanuele Giuseppe Esposito
767fc281c80SEmanuele Giuseppe Espositocheck-unit-y += tests/test-qgraph$(EXESUF)
768fc281c80SEmanuele Giuseppe Espositotests/test-qgraph$(EXESUF): tests/test-qgraph.o $(libqgraph-obj-y)
769fc281c80SEmanuele Giuseppe Esposito
770fc281c80SEmanuele Giuseppe Espositocheck-qtest-generic-y += tests/qos-test$(EXESUF)
77185af0057SEmanuele Giuseppe Espositotests/qos-test$(EXESUF): $(qos-test-obj-y)
77246e7b706SFam Zheng
773f66e7ac8SMarkus Armbrustertests/qmp-test$(EXESUF): tests/qmp-test.o
774d93bb9d5SMarkus Armbrustertests/qmp-cmd-test$(EXESUF): tests/qmp-cmd-test.o
77546e7b706SFam Zhengtests/device-introspect-test$(EXESUF): tests/device-introspect-test.o
77646e7b706SFam Zhengtests/rtc-test$(EXESUF): tests/rtc-test.o
77746e7b706SFam Zhengtests/m48t59-test$(EXESUF): tests/m48t59-test.o
778645d3cbeSSu Hangtests/hexloader-test$(EXESUF): tests/hexloader-test.o
77946e7b706SFam Zhengtests/endianness-test$(EXESUF): tests/endianness-test.o
78046e7b706SFam Zhengtests/spapr-phb-test$(EXESUF): tests/spapr-phb-test.o $(libqos-obj-y)
781fcbf4a3cSThomas Huthtests/prom-env-test$(EXESUF): tests/prom-env-test.o $(libqos-obj-y)
782eeddd59fSLaurent Viviertests/rtas-test$(EXESUF): tests/rtas-test.o $(libqos-spapr-obj-y)
78346e7b706SFam Zhengtests/fdc-test$(EXESUF): tests/fdc-test.o
78446e7b706SFam Zhengtests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y)
78546e7b706SFam Zhengtests/ahci-test$(EXESUF): tests/ahci-test.o $(libqos-pc-obj-y)
78646e7b706SFam Zhengtests/ipmi-kcs-test$(EXESUF): tests/ipmi-kcs-test.o
78746e7b706SFam Zhengtests/ipmi-bt-test$(EXESUF): tests/ipmi-bt-test.o
78846e7b706SFam Zhengtests/hd-geo-test$(EXESUF): tests/hd-geo-test.o
78946e7b706SFam Zhengtests/boot-order-test$(EXESUF): tests/boot-order-test.o $(libqos-obj-y)
790d2ab58ffSThomas Huthtests/boot-serial-test$(EXESUF): tests/boot-serial-test.o $(libqos-obj-y)
79146e7b706SFam Zhengtests/bios-tables-test$(EXESUF): tests/bios-tables-test.o \
7923248f1b4SBen Warren	tests/boot-sector.o tests/acpi-utils.o $(libqos-obj-y)
79346e7b706SFam Zhengtests/pxe-test$(EXESUF): tests/pxe-test.o tests/boot-sector.o $(libqos-obj-y)
79446e7b706SFam Zhengtests/tmp105-test$(EXESUF): tests/tmp105-test.o $(libqos-omap-obj-y)
7955141d415SCédric Le Goatertests/pca9552-test$(EXESUF): tests/pca9552-test.o $(libqos-omap-obj-y)
79646e7b706SFam Zhengtests/ds1338-test$(EXESUF): tests/ds1338-test.o $(libqos-imx-obj-y)
79717ff8e18SSteffen Görtztests/microbit-test$(EXESUF): tests/microbit-test.o
7987a2334f7SCédric Le Goatertests/m25p80-test$(EXESUF): tests/m25p80-test.o
79946e7b706SFam Zhengtests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y)
80046e7b706SFam Zhengtests/q35-test$(EXESUF): tests/q35-test.o $(libqos-pc-obj-y)
80146e7b706SFam Zhengtests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y)
80246e7b706SFam Zhengtests/e1000-test$(EXESUF): tests/e1000-test.o
80346e7b706SFam Zhengtests/rtl8139-test$(EXESUF): tests/rtl8139-test.o $(libqos-pc-obj-y)
80446e7b706SFam Zhengtests/pcnet-test$(EXESUF): tests/pcnet-test.o
805ca8e4bf4SDavid Gibsontests/pnv-xscom-test$(EXESUF): tests/pnv-xscom-test.o
80646e7b706SFam Zhengtests/eepro100-test$(EXESUF): tests/eepro100-test.o
80746e7b706SFam Zhengtests/vmxnet3-test$(EXESUF): tests/vmxnet3-test.o
80846e7b706SFam Zhengtests/ne2000-test$(EXESUF): tests/ne2000-test.o
80946e7b706SFam Zhengtests/wdt_ib700-test$(EXESUF): tests/wdt_ib700-test.o
81046e7b706SFam Zhengtests/tco-test$(EXESUF): tests/tco-test.o $(libqos-pc-obj-y)
81106d09a01SPaolo Bonzinitests/virtio-ccw-test$(EXESUF): tests/virtio-ccw-test.o
81246e7b706SFam Zhengtests/display-vga-test$(EXESUF): tests/display-vga-test.o
81346e7b706SFam Zhengtests/qom-test$(EXESUF): tests/qom-test.o
81478f86a2bSThomas Huthtests/test-hmp$(EXESUF): tests/test-hmp.o
8159c5a87e4SIgor Mammedovtests/machine-none-test$(EXESUF): tests/machine-none-test.o
8160d9d4872SDavid Hildenbrandtests/device-plug-test$(EXESUF): tests/device-plug-test.o
81719e3d979SPaolo Bonzinitests/drive_del-test$(EXESUF): tests/drive_del-test.o
81887ad860cSPaolo Bonzinitests/nvme-test$(EXESUF): tests/nvme-test.o $(libqos-pc-obj-y)
81946e7b706SFam Zhengtests/pvpanic-test$(EXESUF): tests/pvpanic-test.o
82046e7b706SFam Zhengtests/i82801b11-test$(EXESUF): tests/i82801b11-test.o
82146e7b706SFam Zhengtests/es1370-test$(EXESUF): tests/es1370-test.o
82246e7b706SFam Zhengtests/intel-hda-test$(EXESUF): tests/intel-hda-test.o
82346e7b706SFam Zhengtests/ioh3420-test$(EXESUF): tests/ioh3420-test.o
82446e7b706SFam Zhengtests/usb-hcd-ohci-test$(EXESUF): tests/usb-hcd-ohci-test.o $(libqos-usb-obj-y)
82546e7b706SFam Zhengtests/usb-hcd-uhci-test$(EXESUF): tests/usb-hcd-uhci-test.o $(libqos-usb-obj-y)
82646e7b706SFam Zhengtests/usb-hcd-ehci-test$(EXESUF): tests/usb-hcd-ehci-test.o $(libqos-usb-obj-y)
82746e7b706SFam Zhengtests/usb-hcd-xhci-test$(EXESUF): tests/usb-hcd-xhci-test.o $(libqos-usb-obj-y)
828152e0393SThomas Huthtests/cpu-plug-test$(EXESUF): tests/cpu-plug-test.o
8292656bfd9SJuan Quintelatests/migration-test$(EXESUF): tests/migration-test.o
8304b9b7000SDr. David Alan Gilberttests/test-announce-self$(EXESUF): tests/test-announce-self.o
83146e7b706SFam Zhengtests/qemu-iotests/socket_scm_helper$(EXESUF): tests/qemu-iotests/socket_scm_helper.o
83246e7b706SFam Zhengtests/test-qemu-opts$(EXESUF): tests/test-qemu-opts.o $(test-util-obj-y)
833599c156bSMarkus Armbrustertests/test-keyval$(EXESUF): tests/test-keyval.o $(test-util-obj-y) $(test-qapi-obj-y)
83446e7b706SFam Zhengtests/test-write-threshold$(EXESUF): tests/test-write-threshold.o $(test-block-obj-y)
83546e7b706SFam Zhengtests/test-netfilter$(EXESUF): tests/test-netfilter.o $(qtest-obj-y)
83646e7b706SFam Zhengtests/test-filter-mirror$(EXESUF): tests/test-filter-mirror.o $(qtest-obj-y)
83746e7b706SFam Zhengtests/test-filter-redirector$(EXESUF): tests/test-filter-redirector.o $(qtest-obj-y)
8386efef58eSEduardo Habkosttests/test-x86-cpuid-compat$(EXESUF): tests/test-x86-cpuid-compat.o $(qtest-obj-y)
8392bf25e07SLaurent Viviertests/ivshmem-test$(EXESUF): tests/ivshmem-test.o contrib/ivshmem-server/ivshmem-server.o $(libqos-pc-obj-y) $(libqos-spapr-obj-y)
840660174fcSPaolo Bonzinitests/megasas-test$(EXESUF): tests/megasas-test.o $(libqos-spapr-obj-y) $(libqos-pc-obj-y)
841de97cdedSMarc-André Lureautests/vhost-user-bridge$(EXESUF): tests/vhost-user-bridge.o $(test-util-obj-y) libvhost-user.a
842c739cdddSFam Zhengtests/test-uuid$(EXESUF): tests/test-uuid.o $(test-util-obj-y)
843882fac37SDmitry Osipenkotests/test-arm-mptimer$(EXESUF): tests/test-arm-mptimer.o
8446c873d11SMarkus Armbrustertests/test-qapi-util$(EXESUF): tests/test-qapi-util.o $(test-util-obj-y)
84563baf8bfSIgor Mammedovtests/numa-test$(EXESUF): tests/numa-test.o
8464871b51bSMichael S. Tsirkintests/vmgenid-test$(EXESUF): tests/vmgenid-test.o tests/boot-sector.o tests/acpi-utils.o
84742f45505SThomas Huthtests/cdrom-test$(EXESUF): tests/cdrom-test.o tests/boot-sector.o $(libqos-obj-y)
84846e7b706SFam Zheng
849409437e1SDaniel P. Berrangetests/migration/stress$(EXESUF): tests/migration/stress.o
8500bdb12c7SPeter Maydell	$(call quiet-command, $(LINKPROG) -static -O3 $(PTHREAD_LIB) -o $@ $< ,"LINK","$(TARGET_DIR)$@")
851409437e1SDaniel P. Berrange
852409437e1SDaniel P. BerrangeINITRD_WORK_DIR=tests/migration/initrd
853409437e1SDaniel P. Berrange
854409437e1SDaniel P. Berrangetests/migration/initrd-stress.img: tests/migration/stress$(EXESUF)
855409437e1SDaniel P. Berrange	mkdir -p $(INITRD_WORK_DIR)
856409437e1SDaniel P. Berrange	cp $< $(INITRD_WORK_DIR)/init
857409437e1SDaniel P. Berrange	(cd $(INITRD_WORK_DIR) && (find | cpio --quiet -o -H newc | gzip -9)) > $@
858409437e1SDaniel P. Berrange	rm $(INITRD_WORK_DIR)/init
859409437e1SDaniel P. Berrange	rmdir $(INITRD_WORK_DIR)
860409437e1SDaniel P. Berrange
86146e7b706SFam Zheng# QTest rules
86246e7b706SFam Zheng
8632b1f35b9SAlex BennéeTARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS)))
86446e7b706SFam Zhengifeq ($(CONFIG_POSIX),y)
86546e7b706SFam ZhengQTEST_TARGETS = $(TARGETS)
86646e7b706SFam Zhengcheck-qtest-y=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))
86746e7b706SFam Zhengcheck-qtest-y += $(check-qtest-generic-y)
86846e7b706SFam Zhengelse
86946e7b706SFam ZhengQTEST_TARGETS =
87046e7b706SFam Zhengendif
87146e7b706SFam Zheng
87246e7b706SFam Zhengqtest-obj-y = tests/libqtest.o $(test-util-obj-y)
87346e7b706SFam Zheng$(check-qtest-y): $(qtest-obj-y)
87446e7b706SFam Zheng
8754be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): qemu-ga$(EXESUF)
8764be75077SPhilippe Mathieu-Daudétests/test-qga$(EXESUF): tests/test-qga.o $(qtest-obj-y)
87746e7b706SFam Zheng
87846e7b706SFam ZhengSPEED = quick
87946e7b706SFam Zheng
88046e7b706SFam Zheng# gtester tests, possibly with verbose output
8819df43317SPaolo Bonzini# do_test_tap runs all tests, even if some of them fail, while do_test_human
8829df43317SPaolo Bonzini# stops at the first failure unless -k is given on the command line
8839df43317SPaolo Bonzini
8849df43317SPaolo Bonzinidefine do_test_human_k
8859df43317SPaolo Bonzini        $(quiet-@)rc=0; $(foreach COMMAND, $1, \
8869df43317SPaolo Bonzini          $(call quiet-command-run, \
8879df43317SPaolo Bonzini            export MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} $2; \
8889df43317SPaolo Bonzini              $(COMMAND) -m=$(SPEED) -k --tap < /dev/null \
8899df43317SPaolo Bonzini              | ./scripts/tap-driver.pl --test-name="$(notdir $(COMMAND))" $(if $(V),, --show-failures-only) \
8909df43317SPaolo Bonzini              || rc=$$?;, "TEST", "$@: $(COMMAND)")) exit $$rc
8919df43317SPaolo Bonziniendef
8929df43317SPaolo Bonzinidefine do_test_human_no_k
8939df43317SPaolo Bonzini        $(foreach COMMAND, $1, \
8949df43317SPaolo Bonzini          $(call quiet-command, \
8959df43317SPaolo Bonzini            MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} $2 \
8969df43317SPaolo Bonzini              $(COMMAND) -m=$(SPEED) -k --tap < /dev/null \
8979df43317SPaolo Bonzini              | ./scripts/tap-driver.pl --test-name="$(notdir $(COMMAND))" $(if $(V),, --show-failures-only), \
8989df43317SPaolo Bonzini              "TEST", "$@: $(COMMAND)")
8999df43317SPaolo Bonzini)
9009df43317SPaolo Bonziniendef
9019df43317SPaolo Bonzinido_test_human = \
9029df43317SPaolo Bonzini        $(if $(findstring k, $(MAKEFLAGS)), $(do_test_human_k), $(do_test_human_no_k))
9039df43317SPaolo Bonzini
9049df43317SPaolo Bonzinidefine do_test_tap
9059df43317SPaolo Bonzini	$(call quiet-command, \
9069df43317SPaolo Bonzini          { export MALLOC_PERTURB_=$${MALLOC_PERTURB_:-$$(( $${RANDOM:-0} % 255 + 1))} $2; \
9079df43317SPaolo Bonzini            $(foreach COMMAND, $1, \
9089df43317SPaolo Bonzini	      $(COMMAND) -m=$(SPEED) -k --tap < /dev/null \
9099df43317SPaolo Bonzini	      | sed "s/^[a-z][a-z]* [0-9]* /&$(notdir $(COMMAND)) /" || true; ) } \
9109df43317SPaolo Bonzini	      | ./scripts/tap-merge.pl | tee "$@" \
9119df43317SPaolo Bonzini	      | ./scripts/tap-driver.pl $(if $(V),, --show-failures-only), \
9129df43317SPaolo Bonzini	  "TAP","$@")
9139df43317SPaolo Bonziniendef
91446e7b706SFam Zheng
91546e7b706SFam Zheng.PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS))
916b94b330eSPhilippe Mathieu-Daudé$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: subdir-%-softmmu $(check-qtest-y)
9179df43317SPaolo Bonzini	$(call do_test_human,$(check-qtest-$*-y) $(check-qtest-generic-y), \
9189df43317SPaolo Bonzini	  QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
9199df43317SPaolo Bonzini	  QTEST_QEMU_IMG=qemu-img$(EXESUF))
92046e7b706SFam Zheng
9219df43317SPaolo Bonzinicheck-unit: $(check-unit-y)
9229df43317SPaolo Bonzini	$(call do_test_human, $^)
92346e7b706SFam Zheng
9249df43317SPaolo Bonzinicheck-speed: $(check-speed-y)
9259df43317SPaolo Bonzini	$(call do_test_human, $^)
92646e7b706SFam Zheng
9279df43317SPaolo Bonzini# gtester tests with TAP output
92846e7b706SFam Zheng
9299df43317SPaolo Bonzini$(patsubst %, check-report-qtest-%.tap, $(QTEST_TARGETS)): check-report-qtest-%.tap: $(check-qtest-y)
9309df43317SPaolo Bonzini	$(call do_test_tap, $(check-qtest-$*-y) $(check-qtest-generic-y), \
9319df43317SPaolo Bonzini	  QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
9329df43317SPaolo Bonzini	  QTEST_QEMU_IMG=qemu-img$(EXESUF))
9339df43317SPaolo Bonzini
9349df43317SPaolo Bonzinicheck-report-unit.tap: $(check-unit-y)
9359df43317SPaolo Bonzini	$(call do_test_tap,$^)
93646e7b706SFam Zheng
93746e7b706SFam Zheng# Reports and overall runs
93846e7b706SFam Zheng
9399df43317SPaolo Bonzinicheck-report.tap: $(patsubst %,check-report-qtest-%.tap, $(QTEST_TARGETS)) check-report-unit.tap
9409df43317SPaolo Bonzini	$(call quiet-command,./scripts/tap-merge.py $^ > $@,"GEN","$@")
94146e7b706SFam Zheng
9422cade3d7SAlex Bennée# FPU Emulation tests (aka softfloat)
9432cade3d7SAlex Bennée#
9442cade3d7SAlex Bennée# As we still have some places that need fixing the rules are a little
9452cade3d7SAlex Bennée# more complex than they need to be and have to override some of the
9462cade3d7SAlex Bennée# generic Makefile expansions. Once we are cleanly passing all
9472cade3d7SAlex Bennée# the tests we can simplify the make syntax.
9482cade3d7SAlex Bennée
9492cade3d7SAlex BennéeFP_TEST_BIN=$(BUILD_DIR)/tests/fp/fp-test
9502cade3d7SAlex Bennée
9512cade3d7SAlex Bennée# the build dir is created by configure
9522cade3d7SAlex Bennée.PHONY: $(FP_TEST_BIN)
9532cade3d7SAlex Bennée$(FP_TEST_BIN):
9542cade3d7SAlex Bennée	$(call quiet-command, \
9552cade3d7SAlex Bennée	 	$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" $(notdir $@), \
9562cade3d7SAlex Bennée	         "BUILD", "$(notdir $@)")
9572cade3d7SAlex Bennée
9582cade3d7SAlex Bennée# The full test suite can take a bit of time, default to a quick run
9594f575c08SAlex Bennée# "-l 2 -r all" can take more than a day for some operations and is best
9604f575c08SAlex Bennée# run manually
961bf30e866SAlex BennéeFP_TL=-l 1 -r all
9622cade3d7SAlex Bennée
963bf30e866SAlex Bennée# $1 = tests, $2 = description, $3 = test flags
9642cade3d7SAlex Bennéetest-softfloat = $(call quiet-command, \
9652cade3d7SAlex Bennée			cd $(BUILD_DIR)/tests/fp && \
966bf30e866SAlex Bennée			./fp-test -s $(if $3,$3,$(FP_TL)) $1 > $2.out 2>&1 || \
9672cade3d7SAlex Bennée			(cat $2.out && exit 1;), \
9682cade3d7SAlex Bennée			"FLOAT TEST", $2)
9692cade3d7SAlex Bennée
9702cade3d7SAlex Bennée# Conversion Routines:
9712cade3d7SAlex Bennée# FIXME: i32_to_extF80 (broken), i64_to_extF80 (broken)
972dc3f8a9dSAlex Bennée#        ui32_to_f128 (not implemented), extF80_roundToInt (broken)
9732cade3d7SAlex Bennée#
9742cade3d7SAlex Bennéecheck-softfloat-conv: $(FP_TEST_BIN)
9752cade3d7SAlex Bennée	$(call test-softfloat, \
9762cade3d7SAlex Bennée		i32_to_f16 i64_to_f16 \
9772cade3d7SAlex Bennée		i32_to_f32 i64_to_f32 \
9782cade3d7SAlex Bennée		i32_to_f64 i64_to_f64 \
9792cade3d7SAlex Bennée		i32_to_f128 i64_to_f128, int-to-float)
9802cade3d7SAlex Bennée	$(call test-softfloat, \
9812cade3d7SAlex Bennée		ui32_to_f16 ui64_to_f16 \
9822cade3d7SAlex Bennée		ui32_to_f32 ui64_to_f32 \
9832cade3d7SAlex Bennée		ui32_to_f64 ui64_to_f64 \
9842cade3d7SAlex Bennée		ui64_to_f128, uint-to-float)
9852cade3d7SAlex Bennée	$(call test-softfloat, \
9862cade3d7SAlex Bennée		f16_to_i32 f16_to_i32_r_minMag \
9872cade3d7SAlex Bennée		f32_to_i32 f32_to_i32_r_minMag \
9882cade3d7SAlex Bennée		f64_to_i32 f64_to_i32_r_minMag \
9892cade3d7SAlex Bennée		extF80_to_i32 extF80_to_i32_r_minMag \
9902cade3d7SAlex Bennée		f128_to_i32 f128_to_i32_r_minMag \
9912cade3d7SAlex Bennée		f16_to_i64 f16_to_i64_r_minMag \
9922cade3d7SAlex Bennée		f32_to_i64 f32_to_i64_r_minMag \
9932cade3d7SAlex Bennée		f64_to_i64 f64_to_i64_r_minMag \
9942cade3d7SAlex Bennée		extF80_to_i64 extF80_to_i64_r_minMag \
9952cade3d7SAlex Bennée		f128_to_i64 f128_to_i64_r_minMag, \
9962cade3d7SAlex Bennée		float-to-int)
9972cade3d7SAlex Bennée	$(call test-softfloat, \
9982cade3d7SAlex Bennée		f16_to_ui32 f16_to_ui32_r_minMag \
9992cade3d7SAlex Bennée		f32_to_ui32 f32_to_ui32_r_minMag \
10002cade3d7SAlex Bennée		f64_to_ui32 f64_to_ui32_r_minMag \
1001dc3f8a9dSAlex Bennée		f128_to_ui32 f128_to_ui32_r_minMag \
10022cade3d7SAlex Bennée		f16_to_ui64 f16_to_ui64_r_minMag \
10032cade3d7SAlex Bennée		f32_to_ui64 f32_to_ui64_r_minMag \
1004dc3f8a9dSAlex Bennée		f64_to_ui64 f64_to_ui64_r_minMag \
1005dc3f8a9dSAlex Bennée		f128_to_ui64 f128_to_ui64_r_minMag, \
10062cade3d7SAlex Bennée		float-to-uint)
10072cade3d7SAlex Bennée	$(call test-softfloat, \
10082cade3d7SAlex Bennée		f16_roundToInt f32_roundToInt \
10092cade3d7SAlex Bennée		f64_roundToInt f128_roundToInt, \
10102cade3d7SAlex Bennée		round-to-integer)
10112cade3d7SAlex Bennée
10122cade3d7SAlex Bennée# Generic rule for all float operations
10132cade3d7SAlex Bennée#
10142cade3d7SAlex Bennée# Some patterns are overidden due to broken or missing tests.
10152cade3d7SAlex Bennée# Hopefully these can be removed over time.
10162cade3d7SAlex Bennée
10172cade3d7SAlex Bennéecheck-softfloat-%: $(FP_TEST_BIN)
10182cade3d7SAlex Bennée	$(call test-softfloat, f16_$* f32_$* f64_$* extF80_$* f128_$*, $*)
10192cade3d7SAlex Bennée
10202cade3d7SAlex Bennée# Float Compare routines
10212cade3d7SAlex BennéeSF_COMPARE_OPS=eq eq_signaling le le_quiet lt_quiet
10222cade3d7SAlex BennéeSF_COMPARE_RULES=$(patsubst %,check-softfloat-%, $(SF_COMPARE_OPS))
10232cade3d7SAlex Bennée
10242cade3d7SAlex Bennée# FIXME: extF80_le_quiet (broken)
10252cade3d7SAlex Bennéecheck-softfloat-le_quiet: $(FP_TEST_BIN)
10262cade3d7SAlex Bennée	$(call test-softfloat, 				\
10272cade3d7SAlex Bennée		f16_le_quiet f32_le_quiet f64_le_quiet  \
10282cade3d7SAlex Bennée		f128_le_quiet, 				\
10292cade3d7SAlex Bennée		le_quiet)
10302cade3d7SAlex Bennée
10312cade3d7SAlex Bennée# FIXME: extF80_lt_quiet (broken)
10322cade3d7SAlex Bennéecheck-softfloat-lt_quiet: $(FP_TEST_BIN)
10332cade3d7SAlex Bennée	$(call test-softfloat, 				\
10342cade3d7SAlex Bennée		f16_lt_quiet f32_lt_quiet f64_lt_quiet  \
10352cade3d7SAlex Bennée		f128_lt_quiet, 				\
10362cade3d7SAlex Bennée		lt_quiet)
10372cade3d7SAlex Bennée
10382cade3d7SAlex Bennée.PHONY: check-softfloat-compare
10392cade3d7SAlex Bennéecheck-softfloat-compare: $(SF_COMPARE_RULES)
10402cade3d7SAlex Bennée
10412cade3d7SAlex Bennée# Math Operations
10422cade3d7SAlex Bennée
10432cade3d7SAlex Bennée# FIXME: extF80_mulAdd (missing)
10442cade3d7SAlex Bennéecheck-softfloat-mulAdd: $(FP_TEST_BIN)
10452cade3d7SAlex Bennée	$(call test-softfloat, \
10462cade3d7SAlex Bennée		f16_mulAdd f32_mulAdd f64_mulAdd f128_mulAdd, \
1047bf30e866SAlex Bennée		mulAdd,-l 1)
10482cade3d7SAlex Bennée
10492cade3d7SAlex Bennée# FIXME: extF80_rem (broken)
10502cade3d7SAlex Bennéecheck-softfloat-rem: $(FP_TEST_BIN)
10512cade3d7SAlex Bennée	$(call test-softfloat, \
10522cade3d7SAlex Bennée		f16_rem f32_rem f64_rem f128_rem, \
10532cade3d7SAlex Bennée		rem)
10542cade3d7SAlex Bennée
10552cade3d7SAlex BennéeSF_MATH_OPS=add sub mul mulAdd div rem sqrt
10562cade3d7SAlex BennéeSF_MATH_RULES=$(patsubst %,check-softfloat-%, $(SF_MATH_OPS))
10572cade3d7SAlex Bennée
10582cade3d7SAlex Bennée.PHONY: check-softfloat-ops
10592cade3d7SAlex Bennéecheck-softfloat-ops: $(SF_MATH_RULES)
10602cade3d7SAlex Bennée
106176170102SAlex Bennée# Finally a generic rule to test all of softfoat. If TCG isnt't
106276170102SAlex Bennée# enabled we define a null operation which skips the tests.
106376170102SAlex Bennée
106476170102SAlex Bennée.PHONY: check-softfloat
106576170102SAlex Bennéeifeq ($(CONFIG_TCG),y)
106676170102SAlex Bennéecheck-softfloat: check-softfloat-conv check-softfloat-compare check-softfloat-ops
106776170102SAlex Bennéeelse
106876170102SAlex Bennéecheck-softfloat:
106976170102SAlex Bennée	$(call quiet-command, /bin/true, "FLOAT TEST", \
107076170102SAlex Bennée		"SKIPPED for non-TCG builds")
107176170102SAlex Bennéeendif
107276170102SAlex Bennée
10738ba0a820SAlex Bennée# Per guest TCG tests
10748ba0a820SAlex Bennée
10752b1f35b9SAlex BennéeLINUX_USER_TARGETS=$(filter %-linux-user,$(TARGET_DIRS))
10768ba0a820SAlex BennéeBUILD_TCG_TARGET_RULES=$(patsubst %,build-tcg-tests-%, $(LINUX_USER_TARGETS))
10778ba0a820SAlex BennéeCLEAN_TCG_TARGET_RULES=$(patsubst %,clean-tcg-tests-%, $(LINUX_USER_TARGETS))
10788ba0a820SAlex BennéeRUN_TCG_TARGET_RULES=$(patsubst %,run-tcg-tests-%, $(LINUX_USER_TARGETS))
10798ba0a820SAlex Bennée
10801a7fab92SAlex Bennéeifeq ($(HAVE_USER_DOCKER),y)
10811a7fab92SAlex Bennée# Probe for the Docker Builds needed for each build
10822b1f35b9SAlex Bennée$(foreach PROBE_TARGET,$(TARGET_DIRS), 				\
10831a7fab92SAlex Bennée	$(eval -include $(SRC_PATH)/tests/tcg/Makefile.probe) 	\
10841a7fab92SAlex Bennée	$(if $(DOCKER_PREREQ), 					\
10851a7fab92SAlex Bennée		$(eval build-tcg-tests-$(PROBE_TARGET): $(DOCKER_PREREQ))))
10861a7fab92SAlex Bennéeendif
10871a7fab92SAlex Bennée
10888ba0a820SAlex Bennéebuild-tcg-tests-%:
1089cff54773SAlex Bennée	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" \
1090cff54773SAlex Bennée		SKIP_DOCKER_BUILD=1 TARGET_DIR="$*/" guest-tests, \
1091cff54773SAlex Bennée		"BUILD", "TCG tests for $*")
10928ba0a820SAlex Bennée
10938ba0a820SAlex Bennéerun-tcg-tests-%: % build-tcg-tests-%
1094cff54773SAlex Bennée	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" \
1095cff54773SAlex Bennée		SKIP_DOCKER_BUILD=1 TARGET_DIR="$*/" run-guest-tests, \
1096cff54773SAlex Bennée		"RUN", "TCG tests for $*")
10978ba0a820SAlex Bennée
10988ba0a820SAlex Bennéeclean-tcg-tests-%:
10998ba0a820SAlex Bennée	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" clean-guest-tests,)
11008ba0a820SAlex Bennée
11018ba0a820SAlex Bennée.PHONY: build-tcg
11028ba0a820SAlex Bennéebuild-tcg: $(BUILD_TCG_TARGET_RULES)
11038ba0a820SAlex Bennée
11048ba0a820SAlex Bennée.PHONY: check-tcg
110576170102SAlex Bennéecheck-tcg: check-softfloat $(RUN_TCG_TARGET_RULES)
11068ba0a820SAlex Bennée
11078ba0a820SAlex Bennée.PHONY: clean-tcg
11088ba0a820SAlex Bennéeclean-tcg: $(CLEAN_TCG_TARGET_RULES)
110946e7b706SFam Zheng
111046e7b706SFam Zheng# Other tests
111146e7b706SFam Zheng
1112206d1b9cSLaurent VivierQEMU_IOTESTS_HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = tests/qemu-iotests/socket_scm_helper$(EXESUF)
111346e7b706SFam Zheng
111446e7b706SFam Zheng.PHONY: check-tests/qemu-iotests-quick.sh
111546e7b706SFam Zhengcheck-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF) $(QEMU_IOTESTS_HELPERS-y)
111646e7b706SFam Zheng	$<
111746e7b706SFam Zheng
111846e7b706SFam Zheng.PHONY: $(patsubst %, check-%, $(check-qapi-schema-y))
111946e7b706SFam Zheng$(patsubst %, check-%, $(check-qapi-schema-y)): check-%.json: $(SRC_PATH)/%.json
112046e7b706SFam Zheng	$(call quiet-command, PYTHONPATH=$(SRC_PATH)/scripts \
11210d6b93deSMatthias Maier		$(PYTHON) $(SRC_PATH)/tests/qapi-schema/test-qapi.py \
112246e7b706SFam Zheng		$^ >$*.test.out 2>$*.test.err; \
112346e7b706SFam Zheng		echo $$? >$*.test.exit, \
11240bdb12c7SPeter Maydell		"TEST","$*.out")
112546e7b706SFam Zheng	@# Sanitize error messages (make them independent of build directory)
112602e3092dSEric Blake	@perl -p -e 's|\Q$(SRC_PATH)\E/||g' $*.test.err | diff -u $(SRC_PATH)/$*.err -
112702e3092dSEric Blake	@diff -u $(SRC_PATH)/$*.out $*.test.out
112802e3092dSEric Blake	@diff -u $(SRC_PATH)/$*.exit $*.test.exit
112946e7b706SFam Zheng
113080d1f2e4SMarkus Armbruster.PHONY: check-tests/qapi-schema/doc-good.texi
113180d1f2e4SMarkus Armbrustercheck-tests/qapi-schema/doc-good.texi: tests/qapi-schema/doc-good.test.texi
113202e3092dSEric Blake	@diff -u $(SRC_PATH)/tests/qapi-schema/doc-good.texi $<
113380d1f2e4SMarkus Armbruster
1134568ae7efSRichard Henderson.PHONY: check-decodetree
1135568ae7efSRichard Hendersoncheck-decodetree:
1136568ae7efSRichard Henderson	$(call quiet-command, \
1137568ae7efSRichard Henderson	  cd $(SRC_PATH)/tests/decode && \
1138568ae7efSRichard Henderson          ./check.sh "$(PYTHON)" "$(SRC_PATH)/scripts/decodetree.py", \
1139568ae7efSRichard Henderson          TEST, decodetree.py)
1140568ae7efSRichard Henderson
114121313721SCleber Rosa# Python venv for running tests
114221313721SCleber Rosa
1143a56931eeSCleber Rosa.PHONY: check-venv check-acceptance
114421313721SCleber Rosa
114521313721SCleber RosaTESTS_VENV_DIR=$(BUILD_DIR)/tests/venv
114621313721SCleber RosaTESTS_VENV_REQ=$(SRC_PATH)/tests/requirements.txt
1147a56931eeSCleber RosaTESTS_RESULTS_DIR=$(BUILD_DIR)/tests/results
1148a56931eeSCleber Rosa# Controls the output generated by Avocado when running tests.
1149a56931eeSCleber Rosa# Any number of command separated loggers are accepted.  For more
1150a56931eeSCleber Rosa# information please refer to "avocado --help".
1151a56931eeSCleber RosaAVOCADO_SHOW=none
115221313721SCleber Rosa
11534061fcf2SCleber Rosaifneq ($(findstring v2,"v$(PYTHON_VERSION)"),v2)
115421313721SCleber Rosa$(TESTS_VENV_DIR): $(TESTS_VENV_REQ)
115521313721SCleber Rosa	$(call quiet-command, \
115621313721SCleber Rosa            $(PYTHON) -m venv --system-site-packages $@, \
115721313721SCleber Rosa            VENV, $@)
115821313721SCleber Rosa	$(call quiet-command, \
115921313721SCleber Rosa            $(TESTS_VENV_DIR)/bin/python -m pip -q install -r $(TESTS_VENV_REQ), \
116021313721SCleber Rosa            PIP, $(TESTS_VENV_REQ))
116121313721SCleber Rosa	$(call quiet-command, touch $@)
116221313721SCleber Rosaelse
116321313721SCleber Rosa$(TESTS_VENV_DIR):
116421313721SCleber Rosa	$(error "venv directory for tests requires Python 3")
116521313721SCleber Rosaendif
116621313721SCleber Rosa
1167a56931eeSCleber Rosa$(TESTS_RESULTS_DIR):
1168a56931eeSCleber Rosa	$(call quiet-command, mkdir -p $@, \
1169a56931eeSCleber Rosa            MKDIR, $@)
1170a56931eeSCleber Rosa
117121313721SCleber Rosacheck-venv: $(TESTS_VENV_DIR)
117221313721SCleber Rosa
1173a56931eeSCleber Rosacheck-acceptance: check-venv $(TESTS_RESULTS_DIR)
1174a56931eeSCleber Rosa	$(call quiet-command, \
1175a56931eeSCleber Rosa            $(TESTS_VENV_DIR)/bin/python -m avocado \
1176a56931eeSCleber Rosa            --show=$(AVOCADO_SHOW) run --job-results-dir=$(TESTS_RESULTS_DIR) \
1177a56931eeSCleber Rosa            --failfast=on $(SRC_PATH)/tests/acceptance, \
1178a56931eeSCleber Rosa            "AVOCADO", "tests/acceptance")
1179a56931eeSCleber Rosa
118046e7b706SFam Zheng# Consolidated targets
118146e7b706SFam Zheng
118246e7b706SFam Zheng.PHONY: check-qapi-schema check-qtest check-unit check check-clean
118380d1f2e4SMarkus Armbrustercheck-qapi-schema: $(patsubst %,check-%, $(check-qapi-schema-y)) check-tests/qapi-schema/doc-good.texi
118446e7b706SFam Zhengcheck-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS))
118546e7b706SFam Zhengcheck-block: $(patsubst %,check-%, $(check-block-y))
118676170102SAlex Bennéecheck: check-qapi-schema check-unit check-softfloat check-qtest check-decodetree
118746e7b706SFam Zhengcheck-clean:
118846e7b706SFam Zheng	rm -rf $(check-unit-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
118946e7b706SFam Zheng	rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST), $(check-qtest-$(target)-y)) $(check-qtest-generic-y))
1190fb0bc835SMarkus Armbruster	rm -f tests/test-qapi-gen-timestamp
1191a56931eeSCleber Rosa	rm -rf $(TESTS_VENV_DIR) $(TESTS_RESULTS_DIR)
119246e7b706SFam Zheng
119346e7b706SFam Zhengclean: check-clean
119446e7b706SFam Zheng
119546e7b706SFam Zheng# Build the help program automatically
119646e7b706SFam Zheng
119746e7b706SFam Zhengall: $(QEMU_IOTESTS_HELPERS-y)
119846e7b706SFam Zheng
119946e7b706SFam Zheng-include $(wildcard tests/*.d)
120046e7b706SFam Zheng-include $(wildcard tests/libqos/*.d)
1201e45eaef9SFam Zheng
1202e45eaef9SFam Zhengendif
1203