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