diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-01-07 13:00:44 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-01-12 14:09:06 +0100 |
commit | fb72176ba64057ce0ee5c1a0a443d9f72e270636 (patch) | |
tree | 069c62c2ca85fb2087f056b5dbd4d5d098340f3d /tests | |
parent | bb7cb3ad295c1d99e694f3133de571d80442fb61 (diff) | |
download | qemu-fb72176ba64057ce0ee5c1a0a443d9f72e270636.zip qemu-fb72176ba64057ce0ee5c1a0a443d9f72e270636.tar.gz qemu-fb72176ba64057ce0ee5c1a0a443d9f72e270636.tar.bz2 |
meson: build all modules by default
With more recent versions of Meson, the build.ninja file is more selective
as to what is built by default, and not building the modules results in test
failures.
Mark the modules as built-by-default and, to make the dependencies more
precise, also require them to be up-to-date before running tests.
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/801
Tested-by: Li Zhang <lizhang@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtest/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build index 37e1eaa..26937de 100644 --- a/tests/qtest/meson.build +++ b/tests/qtest/meson.build @@ -335,10 +335,9 @@ foreach dir : target_dirs test: executable(test, src, dependencies: deps) } endif - # FIXME: missing dependency on the emulator binary and qemu-img test('qtest-@0@/@1@'.format(target_base, test), qtest_executables[test], - depends: [test_deps, qtest_emulator], + depends: [test_deps, qtest_emulator, emulator_modules], env: qtest_env, args: ['--tap', '-k'], protocol: 'tap', |