]> Git Repo - qemu.git/blame - tests/Makefile
rewrite iov_* functions
[qemu.git] / tests / Makefile
CommitLineData
8959449b
KW
1export SRC_PATH
2
b93b63f5
PB
3check-unit-y = tests/check-qdict$(EXESUF)
4check-unit-y += tests/check-qfloat$(EXESUF)
5check-unit-y += tests/check-qint$(EXESUF)
6check-unit-y += tests/check-qstring$(EXESUF)
7check-unit-y += tests/check-qlist$(EXESUF)
8check-unit-y += tests/check-qjson$(EXESUF)
9check-unit-y += tests/test-qmp-output-visitor$(EXESUF)
10check-unit-y += tests/test-qmp-input-visitor$(EXESUF)
11check-unit-y += tests/test-qmp-input-strict$(EXESUF)
12check-unit-y += tests/test-qmp-commands$(EXESUF)
13check-unit-y += tests/test-string-input-visitor$(EXESUF)
14check-unit-y += tests/test-string-output-visitor$(EXESUF)
15check-unit-y += tests/test-coroutine$(EXESUF)
2278a69e 16check-unit-y += tests/test-iov$(EXESUF)
b93b63f5
PB
17
18check-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh
19
d1aaf543
AL
20# All QTests for now are POSIX-only, but the dependencies are
21# really in libqtest, not in the testcases themselves.
6c806637 22check-qtest-i386-y = tests/fdc-test$(EXESUF)
fba0c40b 23check-qtest-i386-y += tests/rtc-test$(EXESUF)
d1aaf543 24check-qtest-x86_64-y = $(check-qtest-i386-y)
f91837a7
BS
25check-qtest-sparc-y = tests/m48t59-test$(EXESUF)
26check-qtest-sparc64-y = tests/m48t59-test$(EXESUF)
d1aaf543 27
b93b63f5
PB
28GENERATED_HEADERS += tests/test-qapi-types.h tests/test-qapi-visit.h tests/test-qmp-commands.h
29
30test-obj-y = tests/check-qint.o tests/check-qstring.o tests/check-qdict.o \
31 tests/check-qlist.o tests/check-qfloat.o tests/check-qjson.o \
32 tests/test-coroutine.o tests/test-string-output-visitor.o \
33 tests/test-string-input-visitor.o tests/test-qmp-output-visitor.o \
34 tests/test-qmp-input-visitor.o tests/test-qmp-input-strict.o \
35 tests/test-qmp-commands.o
36
37test-qapi-obj-y = $(qobject-obj-y) $(qapi-obj-y) $(tools-obj-y)
38test-qapi-obj-y += tests/test-qapi-visit.o tests/test-qapi-types.o
39test-qapi-obj-y += module.o
40
41$(test-obj-y): $(GENERATED_HEADERS)
42$(test-obj-y): QEMU_INCLUDES += -Itests
43
44tests/check-qint$(EXESUF): tests/check-qint.o qint.o $(tools-obj-y)
45tests/check-qstring$(EXESUF): tests/check-qstring.o qstring.o $(tools-obj-y)
46tests/check-qdict$(EXESUF): tests/check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qlist.o $(tools-obj-y)
47tests/check-qlist$(EXESUF): tests/check-qlist.o qlist.o qint.o $(tools-obj-y)
48tests/check-qfloat$(EXESUF): tests/check-qfloat.o qfloat.o $(tools-obj-y)
49tests/check-qjson$(EXESUF): tests/check-qjson.o $(qobject-obj-y) $(tools-obj-y)
50tests/test-coroutine$(EXESUF): tests/test-coroutine.o $(coroutine-obj-y) $(tools-obj-y)
2278a69e 51tests/test-iov$(EXESUF): tests/test-iov.o iov.o
b93b63f5
PB
52
53tests/test-qapi-types.c tests/test-qapi-types.h :\
dbfe06c6 54$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-types.py
b93b63f5
PB
55 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py $(gen-out-type) -o tests -p "test-" < $<, " GEN $@")
56tests/test-qapi-visit.c tests/test-qapi-visit.h :\
dbfe06c6 57$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-visit.py
b93b63f5
PB
58 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py $(gen-out-type) -o tests -p "test-" < $<, " GEN $@")
59tests/test-qmp-commands.h tests/test-qmp-marshal.c :\
dbfe06c6 60$(SRC_PATH)/qapi-schema-test.json $(SRC_PATH)/scripts/qapi-commands.py
b93b63f5 61 $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py $(gen-out-type) -o tests -p "test-" < $<, " GEN $@")
dbfe06c6
AL
62
63
b93b63f5
PB
64tests/test-string-output-visitor$(EXESUF): tests/test-string-output-visitor.o $(test-qapi-obj-y)
65tests/test-string-input-visitor$(EXESUF): tests/test-string-input-visitor.o $(test-qapi-obj-y)
66tests/test-qmp-output-visitor$(EXESUF): tests/test-qmp-output-visitor.o $(test-qapi-obj-y)
67tests/test-qmp-input-visitor$(EXESUF): tests/test-qmp-input-visitor.o $(test-qapi-obj-y)
68tests/test-qmp-input-strict$(EXESUF): tests/test-qmp-input-strict.o $(test-qapi-obj-y)
69tests/test-qmp-commands$(EXESUF): tests/test-qmp-commands.o tests/test-qmp-marshal.o $(test-qapi-obj-y)
2d7799f2 70
d2a16f74 71tests/rtc-test$(EXESUF): tests/rtc-test.o $(trace-obj-y)
f91837a7 72tests/m48t59-test$(EXESUF): tests/m48t59-test.o $(trace-obj-y)
fd4567d9 73tests/fdc-test$(EXESUF): tests/fdc-test.o tests/libqtest.o $(trace-obj-y)
d2a16f74 74
49ee3590
AL
75# QTest rules
76
77TARGETS=$(patsubst %-softmmu,%, $(filter %-softmmu,$(TARGET_DIRS)))
78QTEST_TARGETS=$(foreach TARGET,$(TARGETS), $(if $(check-qtest-$(TARGET)-y), $(TARGET),))
79check-qtest-$(CONFIG_POSIX)=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))
80
81qtest-obj-y = tests/libqtest.o $(oslib-obj-y)
82$(check-qtest-y): $(qtest-obj-y)
83
b93b63f5
PB
84.PHONY: check-help
85check-help:
86 @echo "Regression testing targets:"
87 @echo
88 @echo " make check Run all tests"
49ee3590
AL
89 @echo " make check-qtest-TARGET Run qtest tests for given target"
90 @echo " make check-qtest Run qtest tests"
b93b63f5
PB
91 @echo " make check-unit Run qobject tests"
92 @echo " make check-block Run block tests"
93 @echo " make check-report.html Generates an HTML test report"
94 @echo
95 @echo "Please note that HTML reports do not regenerate if the unit tests"
96 @echo "has not changed."
97 @echo
98 @echo "The variable SPEED can be set to control the gtester speed setting."
99 @echo "Default options are -k and (for make V=1) --verbose; they can be"
100 @echo "changed with variable GTESTER_OPTIONS."
2d7799f2 101
b93b63f5
PB
102SPEED = quick
103GTESTER_OPTIONS = -k $(if $(V),--verbose,-q)
dbfe06c6 104
b93b63f5 105# gtester tests, possibly with verbose output
dbfe06c6 106
49ee3590
AL
107.PHONY: $(patsubst %, check-qtest-%, $(QTEST_TARGETS))
108$(patsubst %, check-qtest-%, $(QTEST_TARGETS)): check-qtest-%: $(check-qtest-y)
109 $(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
110 gtester $(GTESTER_OPTIONS) -m=$(SPEED) $(check-qtest-$*-y),"GTESTER $@")
111
b93b63f5
PB
112.PHONY: $(patsubst %, check-%, $(check-unit-y))
113$(patsubst %, check-%, $(check-unit-y)): check-%: %
114 $(call quiet-command,gtester $(GTESTER_OPTIONS) -m=$(SPEED) $*,"GTESTER $*")
dbfe06c6 115
b93b63f5 116# gtester tests with XML output
8959449b 117
49ee3590
AL
118$(patsubst %, check-report-qtest-%.xml, $(QTEST_TARGETS)): check-report-qtest-%.xml: $(check-qtest-y)
119 $(call quiet-command,QTEST_QEMU_BINARY=$*-softmmu/qemu-system-$* \
120 gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $(check-qtest-$*-y),"GTESTER $@")
121
b93b63f5
PB
122check-report-unit.xml: $(check-unit-y)
123 $(call quiet-command,gtester -q $(GTESTER_OPTIONS) -o $@ -m=$(SPEED) $^, "GTESTER $@")
b8c6f29e 124
b93b63f5 125# Reports and overall runs
b8c6f29e 126
49ee3590 127check-report.xml: $(patsubst %,check-report-qtest-%.xml, $(QTEST_TARGETS)) check-report-unit.xml
b93b63f5 128 $(call quiet-command,$(SRC_PATH)/scripts/gtester-cat $^ > $@, " GEN $@")
b8c6f29e 129
b93b63f5
PB
130check-report.html: check-report.xml
131 $(call quiet-command,gtester-report $< > $@, " GEN $@")
132
133
134# Other tests
135
136.PHONY: check-tests/qemu-iotests-quick.sh
137check-tests/qemu-iotests-quick.sh: tests/qemu-iotests-quick.sh qemu-img$(EXESUF) qemu-io$(EXESUF)
138 $<
139
140# Consolidated targets
141
49ee3590
AL
142.PHONY: check-qtest check-unit check
143check-qtest: $(patsubst %,check-qtest-%, $(QTEST_TARGETS))
b93b63f5
PB
144check-unit: $(patsubst %,check-%, $(check-unit-y))
145check-block: $(patsubst %,check-%, $(check-block-y))
49ee3590 146check: check-unit check-qtest
This page took 0.129626 seconds and 4 git commands to generate.