From: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
To: "Alex Bennée" <alex.bennee@linaro.org>
Cc: qemu-devel@nongnu.org, "Brian Cain" <brian.cain@oss.qualcomm.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@oss.qualcomm.com>,
"Daniel P.Berrangé" <berrange@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
"Ilya Leoshkevich" <iii@linux.ibm.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Manos Pitsidianakis" <manos.pitsidianakis@linaro.org>,
"Laurent Vivier" <laurent@vivier.eu>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Gustavo Romero" <gustavo.romero@linaro.org>,
"Helge Deller" <deller@gmx.de>
Subject: Re: [PATCH v5 95/98] tests: remove tcg tests machinery
Date: Thu, 16 Jul 2026 09:04:22 -0700 [thread overview]
Message-ID: <a88ec0dd-2daf-4bce-b08f-bc0e472c1932@oss.qualcomm.com> (raw)
In-Reply-To: <87jyqvgu05.fsf@draig.linaro.org>
On 7/16/2026 2:32 AM, Alex Bennée wrote:
> Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> writes:
>
>> On 7/15/2026 10:36 AM, Alex Bennée wrote:
>>> Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> writes:
>>>
>>>> It's now built-in meson, which offers targets check-tcg and check-tcg-*.
>>>>
>>>> Tested-by: Alex Bennée <alex.bennee@linaro.org>
>>>> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
>>>> ---
>>>> tests/Makefile.include | 68 ++----------------------------------------
>>>> 1 file changed, 2 insertions(+), 66 deletions(-)
>>>>
>>>> diff --git a/tests/Makefile.include b/tests/Makefile.include
>>>> index 494d0109f26..9f82552ab54 100644
>>>> --- a/tests/Makefile.include
>>>> +++ b/tests/Makefile.include
>>>> @@ -19,9 +19,7 @@ check-help:
>>>> ifneq ($(filter $(all-check-targets), check-softfloat),)
>>>> @echo " $(MAKE) check-softfloat Run FPU emulation tests"
>>>> @echo " $(MAKE) check-tcg Run TCG tests"
>>>> - @echo " $(MAKE) run-tcg-tests-TARGET Run TCG tests for a given target"
>>>> - @echo
>>>> - @echo "The variable TCG_TEST_FILTER will select the subset of matching tests."
>>>> + @echo " $(MAKE) check-tcg-TARGET Run TCG tests for a given target"
>>>> endif
>>>> @echo
>>>> @echo " $(MAKE) check-report.junit.xml Generates an aggregated XML test report"
>>>> @@ -40,67 +38,6 @@ export SRC_PATH
>>>>
>>>> SPEED = quick
>>>>
>>>> -
>>>> -# TCG_TESTS_WITH_COMPILERS represents the test targets we have cross compiler
>>>> -# support for, CONFIGURED_TCG_TARGETS it what meson has finally
>>>> -# configured having rejected stuff we can't build.
>>>> -CONFIGURED_TCG_TARGETS=$(patsubst %-config-target.h, %, $(wildcard *-config-target.h))
>>>> -
>>>> -# This is the intersection of what tests we can build and is configured
>>>> -TCG_TESTS_TARGETS=$(filter $(CONFIGURED_TCG_TARGETS), $(TCG_TESTS_WITH_COMPILERS))
>>>> -
>>>> -# Per guest TCG tests
>>>> -BUILD_TCG_TARGET_RULES=$(patsubst %,build-tcg-tests-%, $(TCG_TESTS_TARGETS))
>>>> -CLEAN_TCG_TARGET_RULES=$(patsubst %,clean-tcg-tests-%, $(TCG_TESTS_TARGETS))
>>>> -DISTCLEAN_TCG_TARGET_RULES=$(patsubst %,distclean-tcg-tests-%, $(TCG_TESTS_TARGETS))
>>>> -RUN_TCG_TARGET_RULES=$(patsubst %,run-tcg-tests-%, $(TCG_TESTS_TARGETS))
>>>> -
>>>> -$(foreach TARGET,$(TCG_TESTS_TARGETS), \
>>>> - $(eval $(BUILD_DIR)/tests/tcg/config-$(TARGET).mak: config-host.mak))
>>>> -
>>>> -# $1 = the stem (e.g., arm-softmmu or x86_64-linux-user)
>>>> -get-qemu-bin = $(if $(findstring softmmu,$1),qemu-system-$(subst -softmmu,,$1),qemu-$(subst -linux-user,,$1))
>>>> -
>>>> -$(foreach TARGET,$(TCG_TESTS_TARGETS), \
>>>> - $(eval .ninja-goals.run-tcg-tests-$(TARGET) += $(call get-qemu-bin,$(TARGET))))
>>>> -
>>>> -.PHONY: $(TCG_TESTS_TARGETS:%=build-tcg-tests-%)
>>>> -$(TCG_TESTS_TARGETS:%=build-tcg-tests-%): build-tcg-tests-%: $(BUILD_DIR)/tests/tcg/config-%.mak
>>>> - $(call quiet-command, \
>>>> - $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS), \
>>>> - "BUILD","$* guest-tests")
>>>> -
>>>> -.PHONY: $(TCG_TESTS_TARGETS:%=run-tcg-tests-%)
>>>> -$(TCG_TESTS_TARGETS:%=run-tcg-tests-%): run-tcg-tests-%: build-tcg-tests-%
>>>> - $(call quiet-command, \
>>>> - $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS) SPEED=$(SPEED) TCG_TEST_FILTER=$(TCG_TEST_FILTER) run, \
>>>> - "RUN", "$* guest-tests")
>>>> -
>>>> -.PHONY: $(TCG_TESTS_TARGETS:%=clean-tcg-tests-%)
>>>> -$(TCG_TESTS_TARGETS:%=clean-tcg-tests-%): clean-tcg-tests-%:
>>>> - $(call quiet-command, \
>>>> - $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS) clean, \
>>>> - "CLEAN", "$* guest-tests")
>>>> -
>>>> -.PHONY: $(TCG_TESTS_TARGETS:%=distclean-tcg-tests-%)
>>>> -$(TCG_TESTS_TARGETS:%=distclean-tcg-tests-%): distclean-tcg-tests-%:
>>>> - $(call quiet-command, \
>>>> - $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS) distclean, \
>>>> - "CLEAN", "$* guest-tests")
>>>> -
>>>> -.PHONY: build-tcg
>>>> -build-tcg: $(BUILD_TCG_TARGET_RULES)
>>>> -
>>>> -.PHONY: check-tcg
>>>> -.ninja-goals.check-tcg = all test-plugins
>>>> -check-tcg: $(RUN_TCG_TARGET_RULES)
>>>> -
>>>> -.PHONY: clean-tcg
>>>> -clean-tcg: $(CLEAN_TCG_TARGET_RULES)
>>>
>>> We still need a clean-tcg or similar rule to force a rebuild of the
>>> tests without killing the whole build dir.
>>>
>>
>> It was needed before, since we only had partial dependencies.
>> But now considering that all dependencies are correctly tracked, what's
>> the use case?
>> - If a test is mtime modified, it rebuilds the test.
>> - If a dockerfile is mtime modified, associated tests are rebuilt.
>> - If docker.py is modified, it will rebuild tests transitively.
>> - If cflags are modified, test will be rebuilt also.
>> - All input of a test (.h, .c, ...) are all tracked.
>> - If user installs a cross compiler or remove podman/docker, next meson
>> configuration will identify this and rebuild all associated tests.
>>
>> In case you find a missing dep, we just need to add it in meson. clean
>> is not needed anymore.
>
> OK I was testing the changing of the cross compiler and I noticed its
> not reported in the config summary if we have the fallback to
> podman/docker.
>
> I suspect the logic here:
>
> # snarf the cross-compilation information for tests
> summary_info = {}
> have_cross = false
> foreach target: target_dirs
> tcg_mak = meson.current_build_dir() / 'tests/tcg' / target / 'config-target.mak'
> if fs.exists(tcg_mak)
> config_cross_tcg = keyval.load(tcg_mak)
> if 'CC' in config_cross_tcg
> summary_info += {config_cross_tcg['TARGET_NAME']: config_cross_tcg['CC']}
> have_cross = true
> endif
> endif
> endforeach
> if have_cross
> summary(summary_info, bool_yn: true, section: 'Cross compilers')
> endif
>
> needs to be cleaned up.
>
Thanks for reporting it, I didn't even notice this part of the code
existed to be honest. Indeed, it needs to be updated, and it should be
easy to present the same information from what we did during the test
configuration.
I'll add it in next version.
>>
>>>> -
>>>> -.PHONY: distclean-tcg
>>>> -distclean-tcg: $(DISTCLEAN_TCG_TARGET_RULES)
>>>> -
>>>> # Build up our target list from the filtered list of ninja targets
>>>> TARGETS=$(patsubst libqemu-%.a, %, $(filter libqemu-%.a, $(ninja-targets)))
>>>>
>>>> @@ -128,7 +65,6 @@ check-build: run-ninja
>>>> check-clean:
>>>> rm -rf $(BUILD_DIR)/tests/functional
>>>>
>>>> -clean: check-clean clean-tcg
>>>> -distclean: distclean-tcg
>>>> +clean: check-clean
>
> I wonder if check-clean is redundant as well now if the functional test
> dependencies are properly encoded.
>
It's not really used for dependencies issues (tests/functional has no
meson built binaries), but just to clean tests/functional folder, which
may contain logs, scratch files, and other things leftover from those tests.
I would keep it for now as it doesn't hurt.
>>>>
>>>> endif
>>>
>
Regards,
Pierrick
next prev parent reply other threads:[~2026-07-16 16:05 UTC|newest]
Thread overview: 140+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-10 21:42 [PATCH v5 00/98] tests/tcg: run tests with meson Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 01/98] tests/tcg/multiarch/system/memory.c: remove unused variable Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 02/98] tests/tcg/multiarch/plugin/check-plugin-output.sh: take test output as input Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 03/98] tests/tcg/multiarch/plugin: rename check-plugin-output to regex-compare Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 04/98] meson: bump minimal version to 1.6.0 Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 05/98] tests/tcg: introduce meson.build Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 06/98] tests/tcg/meson.build: introduce exe_name Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 07/98] tests/tcg/meson.build: introduce test_name Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 08/98] tests/tcg/meson.build: introduce cflags Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 09/98] tests/tcg/meson.build: introduce qemu_args Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 10/98] tests/tcg/meson.build: introduce env_var Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 11/98] tests/tcg/plugins: build list of test_plugins Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 12/98] tests/tcg/meson.build: introduce plugin_test Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 13/98] tests/tcg/meson.build: test gdb support and introduce gdb_arch Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 14/98] tests/tcg/meson.build: introduce gdb_test Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 15/98] tests/tcg/meson.build: introduce wrapper Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 16/98] tests/tcg/meson.build: introduce expected_output Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 17/98] tests/tcg/meson.build: add wrapper run_and_check_forbidden_output Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 18/98] tests/tcg/meson.build: add wrapper run_with_input Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 19/98] tests/tcg/meson.build: add wrapper record_replay Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 20/98] tests/tcg/meson.build: add wrapper check_plugin_output Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 21/98] tests/tcg/meson.build: add logic to skip tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 22/98] tests/tcg/meson.build: introduce cc_feat and cc_feat_cflags Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 23/98] tests/tcg/meson.build: introduce gdb_feat and gdb_feat_version Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 24/98] tests/tcg/meson.build: move gdb_arch support check Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 25/98] tests/tcg/meson.build: let test infrastructure detect compiler Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 26/98] tests/docker/docker.py: return error code if probe fails Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 27/98] tests/docker/docker.py: remove "Image is up to date" info Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 28/98] tests/tcg/meson.build: introduce cc_dockerfile and cc_docker_host_arch Pierrick Bouvier
2026-07-10 22:41 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 29/98] tests/tcg/meson.build: check host cross cc is working Pierrick Bouvier
2026-07-10 22:43 ` Philippe Mathieu-Daudé
2026-07-10 23:01 ` Pierrick Bouvier
2026-07-10 23:18 ` Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 30/98] tests/tcg/meson.build: introduce depends Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 31/98] tests/tcg/meson.build: add top-level 'tcg-tests' target Pierrick Bouvier
2026-07-10 23:00 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 32/98] tests/tcg/Makefile: skip user/system tests if target Makefile is not present Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 33/98] tests/tcg/multiarch/gdbstub/prot-none.py: deactivate on gitlab CI Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 34/98] tests/tcg/multiarch: declare user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 35/98] tests/tcg/multiarch: declare system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 36/98] tests/tcg/meson.build: add generic plugin tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 37/98] tests/tcg/arm/fcvt.c: use raw opcode for FPRCVT Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 38/98] tests/tcg/aarch64: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 39/98] tests/tcg/aarch64/system/gpc-test.c: remove unused variables Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 40/98] tests/tcg/aarch64: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 41/98] tests/tcg/aarch64_be: user tests Pierrick Bouvier
2026-07-10 22:27 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 42/98] tests/tcg/alpha: add float reference files Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 43/98] tests/tcg/alpha: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 44/98] tests/tcg/alpha: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 45/98] tests/tcg/arm: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 46/98] tests/tcg/arm: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 47/98] tests/tcg/hexagon/overflow.c: add missing include Pierrick Bouvier
2026-07-16 4:29 ` Brian Cain
2026-07-10 21:42 ` [PATCH v5 48/98] tests/tcg/hexagon: user tests Pierrick Bouvier
2026-07-16 4:30 ` Brian Cain
2026-07-10 21:42 ` [PATCH v5 49/98] tests/tcg/multiarch/sha1.c: fix big endian implementation Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 50/98] tests/tcg/hppa: add float reference files Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 51/98] tests/tcg/hppa: user tests Pierrick Bouvier
2026-07-10 22:24 ` Philippe Mathieu-Daudé
2026-07-10 23:15 ` Pierrick Bouvier
2026-07-11 14:17 ` Philippe Mathieu-Daudé
2026-07-10 21:42 ` [PATCH v5 52/98] tests/tcg/i386: add missing float reference files Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 53/98] tests/tcg/i386: user tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 54/98] tests/tcg/i386: system tests Pierrick Bouvier
2026-07-10 21:42 ` [PATCH v5 55/98] tests/tcg/loongarch64: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 56/98] tests/tcg/loongarch64: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 57/98] tests/tcg/m68k: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 58/98] tests/tcg/m68k: user tests Pierrick Bouvier
2026-07-10 22:22 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 59/98] scripts/probe-gdb-support.py: add mapping for mips architecture Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 60/98] tests/tcg/mips: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 61/98] test/tcg/mips: user tests Pierrick Bouvier
2026-07-10 22:30 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 62/98] tests/tcg/mips64: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 63/98] tests/tcg/mips64: user tests Pierrick Bouvier
2026-07-10 22:29 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 64/98] tests/tcg/mips64el: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 65/98] tests/tcg/mips64el: user tests Pierrick Bouvier
2026-07-10 22:30 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 66/98] tests/docker/dockerfiles/debian-all-test-cross.docker: add or1k toolchain Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 67/98] tests/tcg/or1k/test_addic.c: remove unused variables Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 68/98] tests/tcg/or1k/test_muli.c: remove set but unused variable Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 69/98] tests/tcg/or1k: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 70/98] plugins/api.c: identify or1k pc register and mark it as read only Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 71/98] tests/tcg/or1k: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 72/98] tests/tcg/ppc64: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 73/98] tests/tcg/ppc64: remove dependency on qemu/compiler.h Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 74/98] tests/tcg/ppc64: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 75/98] tests/tcg/ppc64le: add missing float reference file Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 76/98] tests/tcg/ppc64le: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 77/98] tests/tcg/riscv64: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 78/98] tests/tcg/riscv64: user tests Pierrick Bouvier
2026-07-10 22:33 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 79/98] tests/tcg/riscv64: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 80/98] tests/tcg/s390x/head64.S: declare _exit symbol after main Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 81/98] tests/tcg/s390x: add float reference files Pierrick Bouvier
2026-07-14 10:47 ` Ilya Leoshkevich
2026-07-14 15:37 ` Pierrick Bouvier
2026-07-14 18:31 ` Ilya Leoshkevich
2026-07-15 15:36 ` Alex Bennée
2026-07-10 21:43 ` [PATCH v5 82/98] tests/tcg/s390x: user tests Pierrick Bouvier
2026-07-14 8:54 ` Ilya Leoshkevich
2026-07-14 15:43 ` Pierrick Bouvier
2026-07-14 18:22 ` Ilya Leoshkevich
2026-07-14 18:33 ` Pierrick Bouvier
2026-07-14 18:36 ` Ilya Leoshkevich
2026-07-14 18:39 ` Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 83/98] tests/tcg/s390x/console.c: directly implement memcpy and memset Pierrick Bouvier
2026-07-14 10:46 ` Ilya Leoshkevich
2026-07-10 21:43 ` [PATCH v5 84/98] tests/tcg/s390x: system tests Pierrick Bouvier
2026-07-14 10:55 ` Ilya Leoshkevich
2026-07-14 15:33 ` Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 85/98] tests/tcg/sh4: add float reference files Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 86/98] tests/tcg/sh4: user tests Pierrick Bouvier
2026-07-10 22:34 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 87/98] tests/tcg/tricore: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 88/98] tests/tcg/x86_64: add missing float reference file Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 89/98] tests/tcg/x86_64: user tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 90/98] tests/tcg/x86_64: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 91/98] tests/tcg/xtensa/crt.S: align .text section Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 92/98] tests/docker/dockerfiles/debian-xtensa-cross.docker: add test_kc705_be toolchain for xtensaeb Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 93/98] tests/tcg/xtensa: system tests Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 94/98] tests/tcg/xtensa: xtensaeb " Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 95/98] tests: remove tcg tests machinery Pierrick Bouvier
2026-07-15 17:36 ` Alex Bennée
2026-07-15 17:42 ` Pierrick Bouvier
2026-07-16 9:32 ` Alex Bennée
2026-07-16 16:04 ` Pierrick Bouvier [this message]
2026-07-10 21:43 ` [PATCH v5 96/98] tests/tcg: remove remaining Makefiles Pierrick Bouvier
2026-07-10 22:36 ` Philippe Mathieu-Daudé
2026-07-10 21:43 ` [PATCH v5 97/98] configure: remove --cross-cc* options Pierrick Bouvier
2026-07-10 21:43 ` [PATCH v5 98/98] docs/devel/testing/: update documentation Pierrick Bouvier
2026-07-10 22:37 ` Philippe Mathieu-Daudé
2026-07-10 21:58 ` [PATCH v5 00/98] tests/tcg: run tests with meson Pierrick Bouvier
2026-07-14 9:53 ` Alex Bennée
2026-07-14 15:53 ` Pierrick Bouvier
2026-07-15 16:24 ` Alex Bennée
2026-07-15 17:28 ` Pierrick Bouvier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a88ec0dd-2daf-4bce-b08f-bc0e472c1932@oss.qualcomm.com \
--to=pierrick.bouvier@oss.qualcomm.com \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=brian.cain@oss.qualcomm.com \
--cc=deller@gmx.de \
--cc=gustavo.romero@linaro.org \
--cc=iii@linux.ibm.com \
--cc=laurent@vivier.eu \
--cc=manos.pitsidianakis@linaro.org \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@oss.qualcomm.com \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.