1py3 = import('python').find_installation() 2 3qht_bench = executable('qht-bench', 4 sources: 'qht-bench.c', 5 dependencies: [qemuutil]) 6 7executable('atomic_add-bench', 8 sources: files('atomic_add-bench.c'), 9 dependencies: [qemuutil], 10 build_by_default: false) 11 12executable('atomic64-bench', 13 sources: files('atomic64-bench.c'), 14 dependencies: [qemuutil], 15 build_by_default: false) 16 17test_qapi_outputs = [ 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', 30 'test-qapi-events.c', 31 'test-qapi-events.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', 38 'test-qapi-types.c', 39 'test-qapi-types.h', 40 'test-qapi-visit-sub-sub-module.c', 41 'test-qapi-visit-sub-sub-module.h', 42 'test-qapi-visit.c', 43 'test-qapi-visit.h', 44] 45 46test_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) 54 55# meson doesn't like generated output in other directories 56# perhaps change qapi_gen to replace / with _, like Meson itself does? 57subdir('include') 58 59test_qapi_sources = [] 60test_qapi_headers = [] 61i = 0 62foreach o: test_qapi_files.to_list() + test_qapi_files_extra.to_list() 63 if o.full_path().endswith('.h') 64 test_qapi_headers += o 65 endif 66 test_qapi_sources += o 67endforeach 68 69libtestqapi = static_library('testqapi', sources: [genh, test_qapi_sources]) 70testqapi = declare_dependency(link_with: libtestqapi, sources: [genh, test_qapi_headers]) 71 72testblock = declare_dependency(dependencies: [block], sources: 'iothread.c') 73 74tests = { 75 'check-block-qdict': [], 76 'check-qdict': [], 77 'check-qnum': [], 78 'check-qstring': [], 79 'check-qlist': [], 80 'check-qnull': [], 81 'check-qobject': [], 82 'check-qjson': [], 83 'check-qlit': [], 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-opts-visitor': [testqapi], 90 'test-visitor-serialization': [testqapi], 91 'test-bitmap': [], 92 # all code tested by test-x86-cpuid is inside topology.h 93 'test-x86-cpuid': [], 94 'test-cutils': [], 95 'test-shift128': [], 96 'test-mul64': [], 97 # all code tested by test-int128 is inside int128.h 98 'test-int128': [], 99 'rcutorture': [], 100 'test-rcu-list': [], 101 'test-rcu-simpleq': [], 102 'test-rcu-tailq': [], 103 'test-rcu-slist': [], 104 'test-qdist': [], 105 'test-qht': [], 106 'test-bitops': [], 107 'test-bitcnt': [], 108 'test-qgraph': ['qtest/libqos/qgraph.c'], 109 'check-qom-interface': [qom], 110 'check-qom-proplist': [qom], 111 'test-qemu-opts': [], 112 'test-keyval': [testqapi], 113 'test-logging': [], 114 'test-uuid': [], 115 'ptimer-test': ['ptimer-test-stubs.c', meson.source_root() / 'hw/core/ptimer.c'], 116 'test-qapi-util': [], 117} 118 119if have_system or have_tools 120 tests += { 121 'test-qmp-event': [testqapi], 122 } 123endif 124 125test_deps = { 126 'test-qht-par': qht_bench, 127} 128 129benchs = {} 130 131if have_block 132 tests += { 133 'test-coroutine': [testblock], 134 'test-aio': [testblock], 135 'test-aio-multithread': [testblock], 136 'test-throttle': [testblock], 137 'test-thread-pool': [testblock], 138 'test-hbitmap': [testblock], 139 'test-bdrv-drain': [testblock], 140 'test-bdrv-graph-mod': [testblock], 141 'test-blockjob': [testblock], 142 'test-blockjob-txn': [testblock], 143 'test-block-backend': [testblock], 144 'test-block-iothread': [testblock], 145 'test-write-threshold': [testblock], 146 'test-crypto-hash': [crypto], 147 'test-crypto-hmac': [crypto], 148 'test-crypto-cipher': [crypto], 149 'test-crypto-secret': [crypto, keyutils], 150 'test-authz-simple': [authz], 151 'test-authz-list': [authz], 152 'test-authz-listfile': [authz], 153 'test-io-task': [testblock], 154 'test-io-channel-socket': ['socket-helpers.c', 'io-channel-helpers.c', io], 155 'test-io-channel-file': ['io-channel-helpers.c', io], 156 'test-io-channel-command': ['io-channel-helpers.c', io], 157 'test-io-channel-buffer': ['io-channel-helpers.c', io], 158 'test-crypto-ivgen': [io], 159 'test-crypto-afsplit': [io], 160 'test-crypto-block': [io], 161 } 162 if 'CONFIG_GNUTLS' in config_host and \ 163 'CONFIG_TASN1' in config_host and \ 164 'CONFIG_POSIX' in config_host 165 tests += { 166 'test-crypto-tlscredsx509': ['crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c', 167 tasn1, crypto, gnutls], 168 'test-crypto-tlssession': ['crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c', 'crypto-tls-psk-helpers.c', 169 tasn1, crypto, gnutls], 170 'test-io-channel-tls': ['io-channel-helpers.c', 'crypto-tls-x509-helpers.c', 'pkix_asn1_tab.c', 171 tasn1, io, crypto, gnutls]} 172 endif 173 if 'CONFIG_AUTH_PAM' in config_host 174 tests += {'test-authz-pam': [authz]} 175 endif 176 if 'CONFIG_QEMU_PRIVATE_XTS' in config_host 177 tests += {'test-crypto-xts': [crypto, io]} 178 endif 179 if 'CONFIG_POSIX' in config_host 180 tests += {'test-image-locking': [testblock]} 181 endif 182 if 'CONFIG_REPLICATION' in config_host 183 tests += {'test-replication': [testblock]} 184 endif 185 if 'CONFIG_NETTLE' in config_host or 'CONFIG_GCRYPT' in config_host 186 tests += {'test-crypto-pbkdf': [io]} 187 endif 188 if 'CONFIG_EPOLL_CREATE1' in config_host 189 tests += {'test-fdmon-epoll': [testblock]} 190 endif 191 benchs += { 192 'benchmark-crypto-hash': [crypto], 193 'benchmark-crypto-hmac': [crypto], 194 'benchmark-crypto-cipher': [crypto], 195 } 196endif 197 198if have_system 199 tests += { 200 'test-iov': [], 201 'test-qmp-cmds': [testqapi], 202 'test-xbzrle': [migration], 203 'test-timed-average': [], 204 'test-util-sockets': ['socket-helpers.c'], 205 'test-base64': [], 206 'test-bufferiszero': [], 207 'test-vmstate': [migration, io] 208 } 209 if 'CONFIG_INOTIFY1' in config_host 210 tests += {'test-util-filemonitor': []} 211 endif 212 213 # Some tests: test-char, test-qdev-global-props, and test-qga, 214 # are not runnable under TSan due to a known issue. 215 # https://github.com/google/sanitizers/issues/1116 216 if 'CONFIG_TSAN' not in config_host 217 if 'CONFIG_POSIX' in config_host 218 tests += { 219 'test-char': ['socket-helpers.c', qom, io, chardev] 220 } 221 endif 222 223 tests += { 224 'test-qdev-global-props': [qom, hwcore, testqapi] 225 } 226 endif 227endif 228 229if 'CONFIG_TSAN' not in config_host and \ 230 'CONFIG_GUEST_AGENT' in config_host and \ 231 'CONFIG_LINUX' in config_host 232 tests += {'test-qga': ['qtest/libqtest.c']} 233 test_deps += {'test-qga': qga} 234endif 235 236test_env = environment() 237test_env.set('G_TEST_SRCDIR', meson.current_source_dir()) 238test_env.set('G_TEST_BUILDDIR', meson.current_build_dir()) 239 240foreach test_name, extra: tests 241 src = [test_name + '.c'] 242 deps = [qemuutil] 243 if extra.length() > 0 244 # use a sourceset to quickly separate sources and deps 245 test_ss = ss.source_set() 246 test_ss.add(extra) 247 src += test_ss.all_sources() 248 deps += test_ss.all_dependencies() 249 endif 250 exe = executable(test_name, src, genh, dependencies: deps) 251 252 test(test_name, exe, 253 depends: test_deps.get(test_name, []), 254 env: test_env, 255 args: ['--tap', '-k'], 256 protocol: 'tap', 257 suite: ['unit']) 258endforeach 259 260foreach bench_name, deps: benchs 261 exe = executable(bench_name, bench_name + '.c', 262 dependencies: [qemuutil] + deps) 263 benchmark(bench_name, exe, 264 args: ['--tap', '-k'], 265 protocol: 'tap', 266 suite: ['speed']) 267endforeach 268 269if have_tools and 'CONFIG_VHOST_USER' in config_host and 'CONFIG_LINUX' in config_host 270 executable('vhost-user-bridge', 271 sources: files('vhost-user-bridge.c'), 272 dependencies: [qemuutil, vhost_user]) 273endif 274 275if have_system and 'CONFIG_POSIX' in config_host 276 subdir('qemu-iotests') 277endif 278 279test('decodetree', sh, 280 args: [ files('decode/check.sh'), config_host['PYTHON'], files('../scripts/decodetree.py') ], 281 workdir: meson.current_source_dir() / 'decode', 282 suite: 'decodetree') 283 284if 'CONFIG_TCG' in config_all 285 subdir('fp') 286endif 287 288if not get_option('tcg').disabled() 289 if 'CONFIG_PLUGIN' in config_host 290 subdir('plugin') 291 endif 292endif 293 294subdir('qapi-schema') 295subdir('qtest') 296subdir('migration') 297