diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-19 06:22:43 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-22 11:53:53 -0400 |
commit | 34f02e9f334956cef4e3af4433aaebe7e5ecf71f (patch) | |
tree | e27bf4a608185172a13454b4de3697c4528a64e5 /tests/qtest/meson.build | |
parent | 925a40df2828d32d3aaaf022282cba81082fb263 (diff) |
do not use colons in test names
Starting with meson 0.56, colons are used to separate the subproject name
from the test name. Use dash or slash depending on what looks nicer.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/qtest/meson.build')
-rw-r--r-- | tests/qtest/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build index 28d4068718..4e0d9e24aa 100644 --- a/tests/qtest/meson.build +++ b/tests/qtest/meson.build @@ -251,7 +251,7 @@ foreach dir : target_dirs } endif # FIXME: missing dependency on the emulator binary and qemu-img - test('qtest-@0@: @1@'.format(target_base, test), + test('qtest-@0@/@1@'.format(target_base, test), qtest_executables[test], depends: [test_deps, qtest_emulator], env: qtest_env, |