[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 049/147] meson: convert check-decodetree
From: |
Paolo Bonzini |
Subject: |
[PATCH 049/147] meson: convert check-decodetree |
Date: |
Mon, 10 Aug 2020 19:07:27 +0200 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
meson.build | 2 ++
tests/Makefile.include | 8 +-------
tests/meson.build | 4 ++++
3 files changed, 7 insertions(+), 7 deletions(-)
create mode 100644 tests/meson.build
diff --git a/meson.build b/meson.build
index a3c2ea7..6f1e199 100644
--- a/meson.build
+++ b/meson.build
@@ -6,6 +6,7 @@ not_found = dependency('', required: false)
keyval = import('unstable-keyval')
ss = import('sourceset')
+sh = find_program('sh')
cc = meson.get_compiler('c')
config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
@@ -363,6 +364,7 @@ endif
subdir('tools')
subdir('pc-bios')
+subdir('tests')
summary_info = {}
summary_info += {'Install prefix': config_host['prefix']}
diff --git a/tests/Makefile.include b/tests/Makefile.include
index f277d23..8e953a2 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -894,13 +894,6 @@ check-tests/qapi-schema/frontend: $(addprefix
$(SRC_PATH)/, $(check-qapi-schema-
check-tests/qapi-schema/doc-good.texi: tests/qapi-schema/doc-good.test.texi
@diff -u $(SRC_PATH)/tests/qapi-schema/doc-good.texi $<
-.PHONY: check-decodetree
-check-decodetree:
- $(call quiet-command, \
- cd $(SRC_PATH)/tests/decode && \
- ./check.sh "$(PYTHON)" "$(SRC_PATH)/scripts/decodetree.py", \
- TEST, decodetree.py)
-
# Python venv for running tests
.PHONY: check-venv check-acceptance
@@ -962,6 +955,7 @@ check-block: $(patsubst %,check-%, $(check-block-y))
endif
check-build: build-unit build-softfloat build-qtest
+check: check-block check-qapi-schema check-unit check-softfloat check-qtest
check-clean:
rm -rf $(check-unit-y) tests/*.o tests/*/*.o $(QEMU_IOTESTS_HELPERS-y)
rm -rf $(sort $(foreach target,$(SYSEMU_TARGET_LIST),
$(check-qtest-$(target)-y:%=tests/qtest/%$(EXESUF)))
$(check-qtest-generic-y:%=tests/qtest/%$(EXESUF)))
diff --git a/tests/meson.build b/tests/meson.build
new file mode 100644
index 0000000..5c52021
--- /dev/null
+++ b/tests/meson.build
@@ -0,0 +1,4 @@
+test('decodetree', sh,
+ args: [ files('decode/check.sh'), config_host['PYTHON'],
files('../scripts/decodetree.py') ],
+ workdir: meson.current_source_dir() / 'decode',
+ suite: 'decodetree')
--
1.8.3.1
- [PATCH 039/147] meson: convert dummy Windows qga/qemu-ga target, (continued)
- [PATCH 039/147] meson: convert dummy Windows qga/qemu-ga target, Paolo Bonzini, 2020/08/10
- [PATCH 041/147] meson: add qemu-keymap, Paolo Bonzini, 2020/08/10
- [PATCH 040/147] meson: add qemu-bridge-helper, Paolo Bonzini, 2020/08/10
- [PATCH 042/147] meson: add qemu-edid, Paolo Bonzini, 2020/08/10
- [PATCH 043/147] meson: add virtfs-proxy-helper, Paolo Bonzini, 2020/08/10
- [PATCH 044/147] meson: keymap-gen, Paolo Bonzini, 2020/08/10
- [PATCH 045/147] meson: generate qemu-version.h, Paolo Bonzini, 2020/08/10
- [PATCH 047/147] meson: generate hxtool files, Paolo Bonzini, 2020/08/10
- [PATCH 046/147] meson: generate shader headers, Paolo Bonzini, 2020/08/10
- [PATCH 048/147] meson: handle edk2 bios and descriptors, Paolo Bonzini, 2020/08/10
- [PATCH 049/147] meson: convert check-decodetree,
Paolo Bonzini <=
- [PATCH 050/147] meson: convert tests/fp and check-softfloat, Paolo Bonzini, 2020/08/10
- [PATCH 051/147] meson: convert check-qapi-schema, Paolo Bonzini, 2020/08/10
- [PATCH 052/147] meson: convert qom directory to Meson (tools part), Paolo Bonzini, 2020/08/10
- [PATCH 054/147] meson: convert crypto directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 055/147] meson: convert io directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 053/147] meson: convert authz directory to Meson, Paolo Bonzini, 2020/08/10
- [PATCH 056/147] meson: convert target/s390x/gen-features.h, Paolo Bonzini, 2020/08/10
- [PATCH 058/147] meson: add macos dependencies, Paolo Bonzini, 2020/08/10
- [PATCH 059/147] meson: add modules infrastructure, Paolo Bonzini, 2020/08/10
- [PATCH 060/147] meson: convert chardev directory to Meson (tools part), Paolo Bonzini, 2020/08/10