diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-12-14 12:29:11 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-01-06 00:51:02 +0100 |
commit | 7bef93ff064f540e24a36a31263ae3db2d06b3d2 (patch) | |
tree | 8e8aaed795caa3b97a8daa14dd679ce25a433414 /tests/qapi-schema | |
parent | 9c9b85d705abdcce0b63f9182d8140dd67bd13fb (diff) | |
download | qemu-7bef93ff064f540e24a36a31263ae3db2d06b3d2.zip qemu-7bef93ff064f540e24a36a31263ae3db2d06b3d2.tar.gz qemu-7bef93ff064f540e24a36a31263ae3db2d06b3d2.tar.bz2 |
tests/qapi-schema: remove Meson workaround
The referenced issue has been fixed since version 0.61, so remove the
workaround.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tests/qapi-schema')
-rw-r--r-- | tests/qapi-schema/meson.build | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/qapi-schema/meson.build b/tests/qapi-schema/meson.build index 406bc72..9dfe98b 100644 --- a/tests/qapi-schema/meson.build +++ b/tests/qapi-schema/meson.build @@ -277,10 +277,6 @@ if build_docs command: ['perl', '-pe', '$x = chr 13; s/$x$//', '@INPUT@'], capture: true) - # "full_path()" needed here to work around - # https://github.com/mesonbuild/meson/issues/7585 - test('QAPI rST doc', diff, args: ['-u', qapi_doc_ref_nocr[0].full_path(), - qapi_doc_out_nocr[0].full_path()], - depends: [qapi_doc_ref_nocr, qapi_doc_out_nocr], + test('QAPI rST doc', diff, args: ['-u', qapi_doc_ref_nocr[0], qapi_doc_out_nocr[0]], suite: ['qapi-schema', 'qapi-doc']) endif |