From: Paolo Bonzini <pbonzini@redhat.com>
To: "Alex Bennée" <alex.bennee@linaro.org>, qemu-devel@nongnu.org
Cc: "Halil Pasic" <pasic@linux.ibm.com>,
"Aurelien Jarno" <aurelien@aurel32.net>,
qemu-riscv@nongnu.org, "Radoslaw Biernacki" <rad@semihalf.com>,
"Daniel Henrique Barboza" <danielhb413@gmail.com>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Beraldo Leal" <bleal@redhat.com>,
"Fabiano Rosas" <farosas@suse.de>,
"Mark Cave-Ayland" <mark.cave-ayland@ilande.co.uk>,
"Laurent Vivier" <lvivier@redhat.com>,
"Nicholas Piggin" <npiggin@gmail.com>,
"Marcin Juszkiewicz" <marcin.juszkiewicz@linaro.org>,
"Christian Borntraeger" <borntraeger@linux.ibm.com>,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Ed Maste" <emaste@freebsd.org>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
"Bernhard Beschow" <shentey@gmail.com>,
"Bin Meng" <bmeng.cn@gmail.com>,
qemu-ppc@nongnu.org, qemu-arm@nongnu.org,
"Laurent Vivier" <laurent@vivier.eu>,
"Joel Stanley" <joel@jms.id.au>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>,
"John Snow" <jsnow@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"Pavel Dovgalyuk" <pavel.dovgaluk@ispras.ru>,
"Alistair Francis" <alistair.francis@wdc.com>,
"Liu Zhiwei" <zhiwei_liu@linux.alibaba.com>,
"Harsh Prateek Bora" <harshpb@linux.ibm.com>,
"Leif Lindholm" <quic_llindhol@quicinc.com>,
"Cleber Rosa" <crosa@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
qemu-s390x@nongnu.org, "Eric Farman" <farman@linux.ibm.com>,
"Weiwei Li" <liwei1518@gmail.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Markus Armbruster" <armbru@redhat.com>,
"Daniel Henrique Barboza" <dbarboza@ventanamicro.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Li-Wen Hsu" <lwhsu@freebsd.org>
Subject: Re: [PATCH v4 30/32] pc-bios: ensure keymaps dependencies set vnc tests
Date: Thu, 9 Jan 2025 13:13:13 +0100 [thread overview]
Message-ID: <82cc1e4a-7035-457e-a020-9a5e12f9a30c@redhat.com> (raw)
In-Reply-To: <20250108121054.1126164-31-alex.bennee@linaro.org>
On 1/8/25 13:10, Alex Bennée wrote:
> I was seeing failures on vnc-display-test on FreeBSD:
>
> make vm-build-freebsd V=1 TARGET_LIST=aarch64-softmmu BUILD_TARGET=check-qtest QEMU_LOCAL=1 DEBUG=1
>
> Leads to:
>
> qemu-system-aarch64: -vnc none: could not read keymap file: 'en-us'
> Broken pipe
> ../src/tests/qtest/libqtest.c:196: kill_qemu() tried to terminate QEMU process but encountered exit status 1 (expected 0)
>
> which was as far as I could tell because we don't populate the
> $BLD/pc-bios/keymaps (although something attempts to symlink
> qemu-bundle/usr/local/share/qemu/keymaps/ to that dir).
That something being scripts/symlink-install-tree.py.
This is where QEMU looks for the keymaps and your patch ensures that it
is populated before running the test. Please add the above info to the
commit message just for accuracy; otherwise:
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> ---
> pc-bios/keymaps/meson.build | 17 ++++++++---------
> tests/qtest/meson.build | 2 +-
> 2 files changed, 9 insertions(+), 10 deletions(-)
>
> diff --git a/pc-bios/keymaps/meson.build b/pc-bios/keymaps/meson.build
> index 0bd8ce0077..a79a09b276 100644
> --- a/pc-bios/keymaps/meson.build
> +++ b/pc-bios/keymaps/meson.build
> @@ -39,19 +39,18 @@ else
> native_qemu_keymap = qemu_keymap
> endif
>
> +keymap_targets = []
> if native_qemu_keymap.found()
> - t = []
> foreach km, args: keymaps
> # generate with qemu-kvm
> - t += custom_target(km,
> - build_by_default: true,
> - output: km,
> - command: [native_qemu_keymap, '-f', '@OUTPUT@', args.split()],
> - install: have_system,
> - install_dir: qemu_datadir / 'keymaps')
> + keymap_targets += custom_target(km,
> + build_by_default: true,
> + output: km,
> + command: [native_qemu_keymap, '-f', '@OUTPUT@', args.split()],
> + install: have_system,
> + install_dir: qemu_datadir / 'keymaps')
> endforeach
> -
> - alias_target('update-keymaps', t)
> + alias_target('update-keymaps', keymap_targets)
> else
> install_data(keymaps.keys(), install_dir: qemu_datadir / 'keymaps')
> endif
> diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
> index c5a70021c5..f75c1057a4 100644
> --- a/tests/qtest/meson.build
> +++ b/tests/qtest/meson.build
> @@ -383,7 +383,7 @@ qtests = {
> if vnc.found()
> gvnc = dependency('gvnc-1.0', method: 'pkg-config', required: false)
> if gvnc.found()
> - qtests += {'vnc-display-test': [gvnc]}
> + qtests += {'vnc-display-test': [gvnc, keymap_targets]}
> qtests_generic += [ 'vnc-display-test' ]
> endif
> endif
next prev parent reply other threads:[~2025-01-09 12:13 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-08 12:10 [PATCH v4 00/32] testing/next: functional tests, qtest clocks, vm and keymaps (pre-PR-FINAL) Alex Bennée
2025-01-08 12:10 ` [PATCH v4 01/32] tests/functional: update the arm tuxrun tests Alex Bennée
2025-01-08 12:10 ` [PATCH v4 02/32] tests/functional: update the i386 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 03/32] tests/functional: add a m68k " Alex Bennée
2025-01-08 12:29 ` Daniel P. Berrangé
2025-01-08 12:10 ` [PATCH v4 04/32] tests/functional: update the mips32 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 05/32] tests/functional: update the mips32el " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 06/32] tests/functional: update the mips64 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 07/32] tests/functional: update the mips64el " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 08/32] tests/functional: update the ppc32 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 09/32] tests/functional: update the ppc64 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 10/32] tests/functional: update the riscv32 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 11/32] tests/functional: update the riscv64 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 12/32] tests/functional: update the s390x " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 13/32] tests/functional: update the sparc64 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 14/32] tests/functional: update the x86_64 " Alex Bennée
2025-01-08 12:10 ` [PATCH v4 15/32] tests/functional/aarch64: add tests for FEAT_RME Alex Bennée
2025-01-08 12:10 ` [PATCH v4 16/32] tests/qtest: remove clock_steps from virtio tests Alex Bennée
2025-01-08 12:10 ` [PATCH v4 17/32] system/qtest: properly feedback results of clock_[step|set] Alex Bennée
2025-01-13 15:22 ` Michael Tokarev
2025-01-13 16:26 ` Alex Bennée
2025-01-13 17:52 ` Michael Tokarev
2025-01-08 12:10 ` [PATCH v4 18/32] tests/functional: remove hacky sleep from the tests Alex Bennée
2025-01-08 12:10 ` [PATCH v4 19/32] tests/functional: add zstd support to uncompress utility Alex Bennée
2025-01-08 12:32 ` Daniel P. Berrangé
2025-01-08 14:08 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 20/32] tests/functional: update tuxruntest to use " Alex Bennée
2025-01-08 14:09 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 21/32] tests/functional: remove unused kernel_command_line Alex Bennée
2025-01-08 14:15 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 22/32] tests/functional: bail aarch64_virt tests early if missing TCG Alex Bennée
2025-01-08 14:16 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 23/32] tests/functional: extend test_aarch64_virt with vulkan test Alex Bennée
2025-01-08 14:17 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 24/32] tests/lcitool: bump to latest version of libvirt-ci Alex Bennée
2025-01-08 12:10 ` [PATCH v4 25/32] tests/docker: move riscv64 cross container from sid to trixie Alex Bennée
2025-01-08 12:10 ` [PATCH v4 26/32] tests/lcitool: remove temp workaround for debian mips64el Alex Bennée
2025-01-08 12:10 ` [PATCH v4 27/32] tests/vm: fix build_path based path Alex Bennée
2025-01-08 12:10 ` [PATCH v4 28/32] tests/vm: partially un-tabify help output Alex Bennée
2025-01-08 14:23 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 29/32] tests/vm: allow interactive login as root Alex Bennée
2025-01-08 14:25 ` Thomas Huth
2025-01-08 12:10 ` [PATCH v4 30/32] pc-bios: ensure keymaps dependencies set vnc tests Alex Bennée
2025-01-09 12:13 ` Paolo Bonzini [this message]
2025-01-08 12:10 ` [PATCH v4 31/32] dockerfiles: Remove 'MAINTAINER' entry in debian-tricore-cross.docker Alex Bennée
2025-01-08 12:10 ` [PATCH v4 32/32] MAINTAINERS: Remove myself from reviewers Alex Bennée
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=82cc1e4a-7035-457e-a020-9a5e12f9a30c@redhat.com \
--to=pbonzini@redhat.com \
--cc=alex.bennee@linaro.org \
--cc=alistair.francis@wdc.com \
--cc=armbru@redhat.com \
--cc=aurelien@aurel32.net \
--cc=berrange@redhat.com \
--cc=bleal@redhat.com \
--cc=bmeng.cn@gmail.com \
--cc=borntraeger@linux.ibm.com \
--cc=crosa@redhat.com \
--cc=danielhb413@gmail.com \
--cc=dbarboza@ventanamicro.com \
--cc=emaste@freebsd.org \
--cc=farman@linux.ibm.com \
--cc=farosas@suse.de \
--cc=harshpb@linux.ibm.com \
--cc=jiaxun.yang@flygoat.com \
--cc=joel@jms.id.au \
--cc=jsnow@redhat.com \
--cc=laurent@vivier.eu \
--cc=liwei1518@gmail.com \
--cc=lvivier@redhat.com \
--cc=lwhsu@freebsd.org \
--cc=marcandre.lureau@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=marcin.juszkiewicz@linaro.org \
--cc=mark.cave-ayland@ilande.co.uk \
--cc=mst@redhat.com \
--cc=npiggin@gmail.com \
--cc=palmer@dabbelt.com \
--cc=pasic@linux.ibm.com \
--cc=pavel.dovgaluk@ispras.ru \
--cc=peter.maydell@linaro.org \
--cc=philmd@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=quic_llindhol@quicinc.com \
--cc=rad@semihalf.com \
--cc=richard.henderson@linaro.org \
--cc=shentey@gmail.com \
--cc=thuth@redhat.com \
--cc=wainersm@redhat.com \
--cc=zhiwei_liu@linux.alibaba.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).