[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 052/150] meson: convert check-decodetree
From: |
Paolo Bonzini |
Subject: |
[PATCH 052/150] meson: convert check-decodetree |
Date: |
Mon, 17 Aug 2020 16:35:45 +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 bb9e918e4c..00b3220fc8 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')
@@ -380,6 +381,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 f277d238fb..8e953a24ee 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 0000000000..5c52021dc9
--- /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')
--
2.26.2
- [PATCH 040/150] meson: convert vss-win32, (continued)
- [PATCH 040/150] meson: convert vss-win32, Paolo Bonzini, 2020/08/17
- [PATCH 042/150] meson: convert dummy Windows qga/qemu-ga target, Paolo Bonzini, 2020/08/17
- [PATCH 043/150] meson: add qemu-bridge-helper, Paolo Bonzini, 2020/08/17
- [PATCH 047/150] meson: keymap-gen, Paolo Bonzini, 2020/08/17
- [PATCH 044/150] meson: add qemu-keymap, Paolo Bonzini, 2020/08/17
- [PATCH 038/150] meson: add solaris and Haiku libraries, Paolo Bonzini, 2020/08/17
- [PATCH 037/150] meson: add macos dependencies, Paolo Bonzini, 2020/08/17
- [PATCH 039/150] meson: convert qemu-ga, Paolo Bonzini, 2020/08/17
- [PATCH 045/150] meson: add qemu-edid, Paolo Bonzini, 2020/08/17
- [PATCH 046/150] meson: add virtfs-proxy-helper, Paolo Bonzini, 2020/08/17
- [PATCH 052/150] meson: convert check-decodetree,
Paolo Bonzini <=
- [PATCH 048/150] meson: generate qemu-version.h, Paolo Bonzini, 2020/08/17
- [PATCH 049/150] meson: generate shader headers, Paolo Bonzini, 2020/08/17
- [PATCH 051/150] meson: handle edk2 bios and descriptors, Paolo Bonzini, 2020/08/17
- [PATCH 050/150] meson: generate hxtool files, Paolo Bonzini, 2020/08/17
- [PATCH 054/150] meson: convert check-qapi-schema, Paolo Bonzini, 2020/08/17
- [PATCH 057/150] meson: convert crypto directory to Meson, Paolo Bonzini, 2020/08/17
- [PATCH 058/150] meson: convert io directory to Meson, Paolo Bonzini, 2020/08/17
- [PATCH 053/150] meson: convert tests/fp and check-softfloat, Paolo Bonzini, 2020/08/17
- [PATCH 055/150] meson: convert qom directory to Meson (tools part), Paolo Bonzini, 2020/08/17
- [PATCH 059/150] meson: convert target/s390x/gen-features.h, Paolo Bonzini, 2020/08/17