From: "Alex Bennée" <alex.bennee@linaro.org>
To: Thomas Huth <thuth@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org,
"Nicholas Piggin" <npiggin@gmail.com>,
qemu-arm <qemu-arm@nongnu.org>,
"Aurelien Jarno" <aurelien@aurel32.net>,
"Radoslaw Biernacki" <rad@semihalf.com>,
"Daniel Henrique Barboza" <danielhb413@gmail.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Fabiano Rosas" <farosas@suse.de>,
"Mark Cave-Ayland" <mark.cave-ayland@ilande.co.uk>,
"Laurent Vivier" <lvivier@redhat.com>,
"Marcin Juszkiewicz" <marcin.juszkiewicz@linaro.org>,
"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
"Bernhard Beschow" <shentey@gmail.com>,
"Bin Meng" <bmeng.cn@gmail.com>,
"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>,
"Paolo Bonzini" <pbonzini@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>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Stefan Hajnoczi" <stefanha@redhat.com>
Subject: Re: [PATCH v4 17/32] system/qtest: properly feedback results of clock_[step|set]
Date: Mon, 20 Jan 2025 14:12:12 +0000 [thread overview]
Message-ID: <877c6pr2v7.fsf@draig.linaro.org> (raw)
In-Reply-To: <259ca4e4-5b24-41bf-b81f-fdd07b19ca3a@redhat.com> (Thomas Huth's message of "Mon, 20 Jan 2025 14:20:15 +0100")
Thomas Huth <thuth@redhat.com> writes:
> On 08/01/2025 13.10, Alex Bennée wrote:
>> Time will not advance if the system is paused or there are no timer
>> events set for the future. In absence of pending timer events
>> advancing time would make no difference the system state. Attempting
>> to do so would be a bug and the test or device under test would need
>> fixing.
>> Tighten up the result reporting to `FAIL` if time was not advanced.
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>> Reviewed-by: Fabiano Rosas <farosas@suse.de>
>> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/2687
>> ---
>> system/qtest.c | 23 ++++++++++++++---------
>> 1 file changed, 14 insertions(+), 9 deletions(-)
>> diff --git a/system/qtest.c b/system/qtest.c
>> index 99ef2042f6..e68ed0f2a8 100644
>> --- a/system/qtest.c
>> +++ b/system/qtest.c
>> @@ -78,6 +78,11 @@ static void *qtest_server_send_opaque;
>> * let you adjust the value of the clock (monotonically). All the commands
>> * return the current value of the clock in nanoseconds.
>> *
>> + * If the commands FAIL then time wasn't advanced which is likely
>> + * because the machine was in a paused state or no timer events exist
>> + * in the future. This will cause qtest to abort and the test will
>> + * need to check its assumptions.
>> + *
>> * .. code-block:: none
>> *
>> * > clock_step
>> @@ -710,7 +715,8 @@ static void qtest_process_command(CharBackend *chr, gchar **words)
>> qtest_sendf(chr, "OK little\n");
>> }
>> } else if (qtest_enabled() && strcmp(words[0], "clock_step") == 0) {
>> - int64_t ns;
>> + int64_t old_ns = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
>> + int64_t ns, new_ns;
>> if (words[1]) {
>> int ret = qemu_strtoi64(words[1], NULL, 0, &ns);
>> @@ -719,11 +725,10 @@ static void qtest_process_command(CharBackend *chr, gchar **words)
>> ns = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL,
>> QEMU_TIMER_ATTR_ALL);
>> }
>> - qemu_clock_advance_virtual_time(
>> - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + ns);
>> + new_ns = qemu_clock_advance_virtual_time(old_ns + ns);
>> qtest_send_prefix(chr);
>> - qtest_sendf(chr, "OK %"PRIi64"\n",
>> - (int64_t)qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL));
>> + qtest_sendf(chr, "%s %"PRIi64"\n",
>> + new_ns > old_ns ? "OK" : "FAIL", new_ns);
>> } else if (strcmp(words[0], "module_load") == 0) {
>> Error *local_err = NULL;
>> int rv;
>> @@ -740,16 +745,16 @@ static void qtest_process_command(CharBackend *chr, gchar **words)
>> qtest_sendf(chr, "FAIL\n");
>> }
>> } else if (qtest_enabled() && strcmp(words[0], "clock_set") == 0) {
>> - int64_t ns;
>> + int64_t ns, new_ns;
>> int ret;
>> g_assert(words[1]);
>> ret = qemu_strtoi64(words[1], NULL, 0, &ns);
>> g_assert(ret == 0);
>> - qemu_clock_advance_virtual_time(ns);
>> + new_ns = qemu_clock_advance_virtual_time(ns);
>> qtest_send_prefix(chr);
>> - qtest_sendf(chr, "OK %"PRIi64"\n",
>> - (int64_t)qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL));
>> + qtest_sendf(chr, "%s %"PRIi64"\n",
>> + new_ns == ns ? "OK" : "FAIL", new_ns);
>> } else if (process_command_cb && process_command_cb(chr, words)) {
>> /* Command got consumed by the callback handler */
>> } else {
>
> Hi Alex,
>
> this patch broke the check-cfi-ppc64-s390x and check-cfi-aarch64 tests
> in the gitlab CI:
>
> https://gitlab.com/thuth/qemu/-/jobs/8896718604#L78
> https://gitlab.com/thuth/qemu/-/jobs/8896718599#L72
>
> Though it does not seem to be related to CFI, but rather to
> --disable-slirp, I can reproduce it locally like this:
>
> .../configure --target-list=ppc64-softmmu --disable-slirp --disable-docs
> make -j$(nproc)
> make tests/qtest/qos-test
> QTEST_QEMU_BINARY=./qemu-system-ppc64 tests/qtest/qos-test \
> -p
> /ppc64/pseries/spapr-pci-host-bridge/pci-bus-spapr/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/config
> **
> ERROR:../qemu/tests/qtest/libqtest.c:719:qtest_rsp_args: assertion
> failed (words[0] == "OK"): ("FAIL" == "OK")
> not ok
> /ppc64/pseries/spapr-pci-host-bridge/pci-bus-spapr/pci-bus/virtio-blk-pci/virtio-blk/virtio-blk-tests/config
> - ERROR:../qemu/tests/qtest/libqtest.c:719:qtest_rsp_args: assertion
> failed (words[0] == "OK"): ("FAIL" == "OK")
> Bail out!
> Aborted (core dumped)
Hmm not sure why I didn't see these in the normal testing. I guess we
weren't exercising virtio-pci in anything other than the CFI tests?
>
> Bisecting the problem pointed me to your patch ... if you've got some
> spare time, could you please have a look?
The change in similar to tests/qtest: remove clock_steps from virtio
tests. This basically avoids the step at the start and it will complete
straight away.
--8<---------------cut here---------------start------------->8---
modified tests/qtest/libqos/virtio-pci-modern.c
@@ -176,10 +176,10 @@ static void wait_config_isr_status(QVirtioDevice *d, gint64 timeout_us)
QVirtioPCIDevice *dev = container_of(d, QVirtioPCIDevice, vdev);
gint64 start_time = g_get_monotonic_time();
- do {
+ while (!get_config_isr_status(d)) {
g_assert(g_get_monotonic_time() - start_time <= timeout_us);
qtest_clock_step(dev->pdev->bus->qts, 100);
- } while (!get_config_isr_status(d));
+ };
}
static void queue_select(QVirtioDevice *d, uint16_t index)
modified tests/qtest/libqos/virtio-pci.c
@@ -174,10 +174,10 @@ static void qvirtio_pci_wait_config_isr_status(QVirtioDevice *d,
QVirtioPCIDevice *dev = container_of(d, QVirtioPCIDevice, vdev);
gint64 start_time = g_get_monotonic_time();
- do {
+ while (!qvirtio_pci_get_config_isr_status(d)) {
g_assert(g_get_monotonic_time() - start_time <= timeout_us);
qtest_clock_step(dev->pdev->bus->qts, 100);
- } while (!qvirtio_pci_get_config_isr_status(d));
+ }
}
static void qvirtio_pci_queue_select(QVirtioDevice *d, uint16_t index)
--8<---------------cut here---------------end--------------->8---
As time has no meaning for the virtio tests (no processing is deferred)
we could we could just as easily simplify to:
--8<---------------cut here---------------start------------->8---
modified tests/qtest/libqos/virtio-pci-modern.c
@@ -173,13 +173,7 @@ static bool get_config_isr_status(QVirtioDevice *d)
static void wait_config_isr_status(QVirtioDevice *d, gint64 timeout_us)
{
- QVirtioPCIDevice *dev = container_of(d, QVirtioPCIDevice, vdev);
- gint64 start_time = g_get_monotonic_time();
-
- do {
- g_assert(g_get_monotonic_time() - start_time <= timeout_us);
- qtest_clock_step(dev->pdev->bus->qts, 100);
- } while (!get_config_isr_status(d));
+ g_assert(get_config_isr_status(d));
}
static void queue_select(QVirtioDevice *d, uint16_t index)
modified tests/qtest/libqos/virtio-pci.c
@@ -171,13 +171,7 @@ static bool qvirtio_pci_get_config_isr_status(QVirtioDevice *d)
static void qvirtio_pci_wait_config_isr_status(QVirtioDevice *d,
gint64 timeout_us)
{
- QVirtioPCIDevice *dev = container_of(d, QVirtioPCIDevice, vdev);
- gint64 start_time = g_get_monotonic_time();
-
- do {
- g_assert(g_get_monotonic_time() - start_time <= timeout_us);
- qtest_clock_step(dev->pdev->bus->qts, 100);
- } while (!qvirtio_pci_get_config_isr_status(d));
+ g_assert(qvirtio_pci_get_config_isr_status(d));
}
--8<---------------cut here---------------end--------------->8---
>
> Thanks,
> Thomas
--
Alex Bennée
Virtualisation Tech Lead @ Linaro
next prev parent reply other threads:[~2025-01-20 14:12 UTC|newest]
Thread overview: 48+ 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-20 13:20 ` Thomas Huth
2025-01-20 14:12 ` Alex Bennée [this message]
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
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=877c6pr2v7.fsf@draig.linaro.org \
--to=alex.bennee@linaro.org \
--cc=alistair.francis@wdc.com \
--cc=armbru@redhat.com \
--cc=aurelien@aurel32.net \
--cc=berrange@redhat.com \
--cc=bmeng.cn@gmail.com \
--cc=crosa@redhat.com \
--cc=danielhb413@gmail.com \
--cc=dbarboza@ventanamicro.com \
--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=marcin.juszkiewicz@linaro.org \
--cc=mark.cave-ayland@ilande.co.uk \
--cc=mst@redhat.com \
--cc=npiggin@gmail.com \
--cc=pavel.dovgaluk@ispras.ru \
--cc=pbonzini@redhat.com \
--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-s390x@nongnu.org \
--cc=quic_llindhol@quicinc.com \
--cc=rad@semihalf.com \
--cc=richard.henderson@linaro.org \
--cc=shentey@gmail.com \
--cc=stefanha@redhat.com \
--cc=thuth@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 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.