2 testblock = declare_dependency(dependencies: [block], sources: 'iothread.c')
5 'check-block-qdict': [],
14 'test-qobject-output-visitor': [testqapi],
15 'test-clone-visitor': [testqapi],
16 'test-qobject-input-visitor': [testqapi],
17 'test-forward-visitor': [testqapi],
18 'test-string-input-visitor': [testqapi],
19 'test-string-output-visitor': [testqapi],
20 'test-opts-visitor': [testqapi],
21 'test-visitor-serialization': [testqapi],
23 # all code tested by test-x86-cpuid is inside topology.h
29 # all code tested by test-int128 is inside int128.h
33 'test-rcu-simpleq': [],
40 'test-qgraph': ['../qtest/libqos/qgraph.c'],
41 'check-qom-interface': [qom],
42 'check-qom-proplist': [qom],
44 'test-keyval': [testqapi],
47 'ptimer-test': ['ptimer-test-stubs.c', meson.project_source_root() / 'hw/core/ptimer.c'],
49 'test-smp-parse': [qom, meson.project_source_root() / 'hw/core/machine-smp.c'],
50 'test-interval-tree': [],
53 if have_system or have_tools
55 'test-qmp-event': [testqapi],
59 tests += {'test-seccomp': ['../../softmmu/qemu-seccomp.c', seccomp]}
65 'test-coroutine': [testblock],
66 'test-aio': [testblock],
67 'test-aio-multithread': [testblock],
68 'test-throttle': [testblock],
69 'test-thread-pool': [testblock],
70 'test-hbitmap': [testblock],
71 'test-bdrv-drain': [testblock],
72 'test-bdrv-graph-mod': [testblock],
73 'test-blockjob': [testblock],
74 'test-blockjob-txn': [testblock],
75 'test-block-backend': [testblock],
76 'test-block-iothread': [testblock],
77 'test-write-threshold': [testblock],
78 'test-crypto-hash': [crypto],
79 'test-crypto-hmac': [crypto],
80 'test-crypto-cipher': [crypto],
81 'test-crypto-akcipher': [crypto],
82 'test-crypto-secret': [crypto, keyutils],
83 'test-crypto-der': [crypto],
84 'test-authz-simple': [authz],
85 'test-authz-list': [authz],
86 'test-authz-listfile': [authz],
87 'test-io-task': [testblock],
88 'test-io-channel-socket': ['socket-helpers.c', 'io-channel-helpers.c', io],
89 'test-io-channel-file': ['io-channel-helpers.c', io],
90 'test-io-channel-command': ['io-channel-helpers.c', io],
91 'test-io-channel-buffer': ['io-channel-helpers.c', io],
92 'test-io-channel-null': [io],
93 'test-crypto-ivgen': [io],
94 'test-crypto-afsplit': [io],
95 'test-crypto-block': [io],
97 if gnutls.found() and \
99 'CONFIG_POSIX' in config_host
101 'test-crypto-tlscredsx509': ['crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c',
102 tasn1, crypto, gnutls],
103 'test-crypto-tlssession': ['crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c', 'crypto-tls-psk-helpers.c',
104 tasn1, crypto, gnutls],
105 'test-io-channel-tls': ['io-channel-helpers.c', 'crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c',
106 tasn1, io, crypto, gnutls]}
109 tests += {'test-authz-pam': [authz]}
112 tests += {'test-crypto-xts': [crypto, io]}
114 if 'CONFIG_POSIX' in config_host
115 tests += {'test-image-locking': [testblock]}
117 if config_host_data.get('CONFIG_REPLICATION')
118 tests += {'test-replication': [testblock]}
120 if nettle.found() or gcrypt.found()
121 tests += {'test-crypto-pbkdf': [io]}
123 if config_host_data.get('CONFIG_EPOLL_CREATE1')
124 tests += {'test-fdmon-epoll': [testblock]}
131 'test-qmp-cmds': [testqapi],
132 'test-xbzrle': [migration],
133 'test-timed-average': [],
134 'test-util-sockets': ['socket-helpers.c'],
136 'test-bufferiszero': [],
137 'test-vmstate': [migration, io],
138 'test-yank': ['socket-helpers.c', qom, io, chardev]
140 if config_host_data.get('CONFIG_INOTIFY1')
141 tests += {'test-util-filemonitor': []}
144 # Some tests: test-char, test-qdev-global-props, and test-qga,
145 # are not runnable under TSan due to a known issue.
146 # https://github.com/google/sanitizers/issues/1116
147 if 'CONFIG_TSAN' not in config_host
148 if 'CONFIG_POSIX' in config_host
150 'test-char': ['socket-helpers.c', qom, io, chardev]
155 'test-qdev-global-props': [qom, hwcore]
160 if have_ga and targetos == 'linux'
161 tests += {'test-qga': ['../qtest/libqmp.c']}
162 test_deps += {'test-qga': qga}
165 test_env = environment()
166 test_env.set('G_TEST_SRCDIR', meson.current_source_dir())
167 test_env.set('G_TEST_BUILDDIR', meson.current_build_dir())
170 'test-crypto-tlscredsx509': 45,
171 'test-crypto-tlssession': 45
174 foreach test_name, extra: tests
175 src = [test_name + '.c']
177 if extra.length() > 0
178 # use a sourceset to quickly separate sources and deps
179 test_ss = ss.source_set()
181 src += test_ss.all_sources()
182 deps += test_ss.all_dependencies()
184 exe = executable(test_name, src, genh, dependencies: deps)
187 depends: test_deps.get(test_name, []),
189 args: ['--tap', '-k'],
191 timeout: slow_tests.get(test_name, 30),
192 priority: slow_tests.get(test_name, 30),