1 py3 = import('python').find_installation()
3 qht_bench = executable('qht-bench',
4 sources: 'qht-bench.c',
5 dependencies: [qemuutil])
7 executable('atomic_add-bench',
8 sources: files('atomic_add-bench.c'),
9 dependencies: [qemuutil],
10 build_by_default: false)
12 executable('atomic64-bench',
13 sources: files('atomic64-bench.c'),
14 dependencies: [qemuutil],
15 build_by_default: false)
18 'qapi-builtin-types.c',
19 'qapi-builtin-types.h',
20 'qapi-builtin-visit.c',
21 'qapi-builtin-visit.h',
22 'test-qapi-commands-sub-sub-module.c',
23 'test-qapi-commands-sub-sub-module.h',
24 'test-qapi-commands.c',
25 'test-qapi-commands.h',
26 'test-qapi-emit-events.c',
27 'test-qapi-emit-events.h',
28 'test-qapi-events-sub-sub-module.c',
29 'test-qapi-events-sub-sub-module.h',
32 'test-qapi-init-commands.c',
33 'test-qapi-init-commands.h',
34 'test-qapi-introspect.c',
35 'test-qapi-introspect.h',
36 'test-qapi-types-sub-sub-module.c',
37 'test-qapi-types-sub-sub-module.h',
40 'test-qapi-visit-sub-sub-module.c',
41 'test-qapi-visit-sub-sub-module.h',
46 test_qapi_files = custom_target('Test QAPI files',
47 output: test_qapi_outputs,
48 input: files('qapi-schema/qapi-schema-test.json',
49 'qapi-schema/include/sub-module.json',
50 'qapi-schema/sub-sub-module.json'),
51 command: [ qapi_gen, '-o', meson.current_build_dir(),
52 '-b', '-p', 'test-', '@INPUT0@' ],
53 depend_files: qapi_gen_depends)
55 # meson doesn't like generated output in other directories
56 # perhaps change qapi_gen to replace / with _, like Meson itself does?
59 test_qapi_sources = []
60 test_qapi_headers = []
62 foreach o: test_qapi_files.to_list() + test_qapi_files_extra.to_list()
63 if o.full_path().endswith('.h')
64 test_qapi_headers += o
66 test_qapi_sources += o
69 libtestqapi = static_library('testqapi', sources: [genh, test_qapi_sources])
70 testqapi = declare_dependency(link_with: libtestqapi, sources: [genh, test_qapi_headers])
72 testblock = declare_dependency(dependencies: [block], sources: 'iothread.c')
75 'check-block-qdict': [],
84 'test-qobject-output-visitor': [testqapi],
85 'test-clone-visitor': [testqapi],
86 'test-qobject-input-visitor': [testqapi],
87 'test-string-input-visitor': [testqapi],
88 'test-string-output-visitor': [testqapi],
89 'test-qmp-event': [testqapi],
90 'test-opts-visitor': [testqapi],
91 'test-visitor-serialization': [testqapi],
93 # all code tested by test-x86-cpuid is inside topology.h
98 # all code tested by test-int128 is inside int128.h
102 'test-rcu-simpleq': [],
103 'test-rcu-tailq': [],
104 'test-rcu-slist': [],
109 'test-qgraph': ['qtest/libqos/qgraph.c'],
110 'check-qom-interface': [qom],
111 'check-qom-proplist': [qom],
112 'test-qemu-opts': [],
113 'test-keyval': [testqapi],
116 'ptimer-test': ['ptimer-test-stubs.c', meson.source_root() / 'hw/core/ptimer.c'],
117 'test-qapi-util': [],
121 'test-qht-par': qht_bench,
128 'test-coroutine': [testblock],
129 'test-aio': [testblock],
130 'test-aio-multithread': [testblock],
131 'test-throttle': [testblock],
132 'test-thread-pool': [testblock],
133 'test-hbitmap': [testblock],
134 'test-bdrv-drain': [testblock],
135 'test-bdrv-graph-mod': [testblock],
136 'test-blockjob': [testblock],
137 'test-blockjob-txn': [testblock],
138 'test-block-backend': [testblock],
139 'test-block-iothread': [testblock],
140 'test-write-threshold': [testblock],
141 'test-crypto-hash': [crypto],
142 'test-crypto-hmac': [crypto],
143 'test-crypto-cipher': [crypto],
144 'test-crypto-secret': [crypto, keyutils],
145 'test-authz-simple': [authz],
146 'test-authz-list': [authz],
147 'test-authz-listfile': [authz],
148 'test-io-task': [testblock],
149 'test-io-channel-socket': ['socket-helpers.c', 'io-channel-helpers.c', io],
150 'test-io-channel-file': ['io-channel-helpers.c', io],
151 'test-io-channel-command': ['io-channel-helpers.c', io],
152 'test-io-channel-buffer': ['io-channel-helpers.c', io],
153 'test-crypto-ivgen': [io],
154 'test-crypto-afsplit': [io],
155 'test-crypto-block': [io],
157 if 'CONFIG_GNUTLS' in config_host and \
158 'CONFIG_TASN1' in config_host and \
159 'CONFIG_POSIX' in config_host
161 'test-crypto-tlscredsx509': ['crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c',
163 'test-crypto-tlssession': ['crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c', 'crypto-tls-psk-helpers.c',
165 'test-io-channel-tls': ['io-channel-helpers.c', 'crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c',
168 if 'CONFIG_AUTH_PAM' in config_host
169 tests += {'test-authz-pam': [authz]}
171 if 'CONFIG_QEMU_PRIVATE_XTS' in config_host
172 tests += {'test-crypto-xts': [crypto, io]}
174 if 'CONFIG_POSIX' in config_host
175 tests += {'test-image-locking': [testblock]}
177 if 'CONFIG_REPLICATION' in config_host
178 tests += {'test-replication': [testblock]}
180 if 'CONFIG_NETTLE' in config_host or 'CONFIG_GCRYPT' in config_host
181 tests += {'test-crypto-pbkdf': [io]}
183 if 'CONFIG_EPOLL_CREATE1' in config_host
184 tests += {'test-fdmon-epoll': [testblock]}
187 'benchmark-crypto-hash': [crypto],
188 'benchmark-crypto-hmac': [crypto],
189 'benchmark-crypto-cipher': [crypto],
196 'test-qmp-cmds': [testqapi],
197 'test-xbzrle': [migration],
198 'test-timed-average': [],
199 'test-util-sockets': ['socket-helpers.c'],
201 'test-bufferiszero': [],
202 'test-vmstate': [migration, io]
204 if 'CONFIG_INOTIFY1' in config_host
205 tests += {'test-util-filemonitor': []}
208 # Some tests: test-char, test-qdev-global-props, and test-qga,
209 # are not runnable under TSan due to a known issue.
210 # https://github.com/google/sanitizers/issues/1116
211 if 'CONFIG_TSAN' not in config_host
212 if 'CONFIG_POSIX' in config_host
214 'test-char': ['socket-helpers.c', qom, io, chardev]
219 'test-qdev-global-props': [qom, hwcore, testqapi]
224 if 'CONFIG_TSAN' not in config_host and \
225 'CONFIG_GUEST_AGENT' in config_host and \
226 'CONFIG_LINUX' in config_host
227 tests += {'test-qga': ['qtest/libqtest.c']}
228 test_deps += {'test-qga': qga}
231 test_env = environment()
232 test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
233 test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
235 foreach test_name, extra: tests
236 src = [test_name + '.c']
238 if extra.length() > 0
239 # use a sourceset to quickly separate sources and deps
240 test_ss = ss.source_set()
242 src += test_ss.all_sources()
243 deps += test_ss.all_dependencies()
245 exe = executable(test_name, src, genh, dependencies: deps)
248 depends: test_deps.get(test_name, []),
250 args: ['--tap', '-k'],
255 foreach bench_name, deps: benchs
256 exe = executable(bench_name, bench_name + '.c',
257 dependencies: [qemuutil] + deps)
258 benchmark(bench_name, exe,
259 args: ['--tap', '-k'],
264 if have_tools and 'CONFIG_VHOST_USER' in config_host and 'CONFIG_LINUX' in config_host
265 executable('vhost-user-bridge',
266 sources: files('vhost-user-bridge.c'),
267 link_with: [libvhost_user],
268 dependencies: [qemuutil])
271 if have_system and 'CONFIG_POSIX' in config_host
272 subdir('qemu-iotests')
275 test('decodetree', sh,
276 args: [ files('decode/check.sh'), config_host['PYTHON'], files('../scripts/decodetree.py') ],
277 workdir: meson.current_source_dir() / 'decode',
282 if not get_option('tcg').disabled()
283 if 'CONFIG_PLUGIN' in config_host
288 subdir('qapi-schema')