qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>, qemu-devel@nongnu.org
Cc: "Aurelien Jarno" <aurelien@aurel32.net>,
	"Jiaxun Yang" <jiaxun.yang@flygoat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Alex Bennée" <alex.bennee@linaro.org>
Subject: Re: [PATCH 1/2] tests/functional: Mark the MIPS replay tests as flaky
Date: Fri, 31 Oct 2025 12:16:14 +0100	[thread overview]
Message-ID: <35c01798-adeb-4f40-9667-cd223810b52b@redhat.com> (raw)
In-Reply-To: <20251031094118.28440-2-philmd@linaro.org>

On 31/10/2025 10.41, Philippe Mathieu-Daudé wrote:
> MIPS test_replay.py often times out (likely hang) under GitLab CI:
> 
>    2/21 qemu:func-thorough+func-mips64el-thorough+thorough / func-mips64el-replay   TIMEOUT   180.12s   killed by signal 15 SIGTERM
> 
> The console.log file is empty, and recording.logs only shows:
> 
>    qemu-system-mips64el: terminating on signal 15 from pid 344
> 
> Since this is a long term issue affecting our CI, disable the tests.
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
>   tests/functional/mips/test_replay.py     | 2 ++
>   tests/functional/mips64el/test_replay.py | 2 ++
>   2 files changed, 4 insertions(+)
> 
> diff --git a/tests/functional/mips/test_replay.py b/tests/functional/mips/test_replay.py
> index 4327481e35b..747835bf008 100755
> --- a/tests/functional/mips/test_replay.py
> +++ b/tests/functional/mips/test_replay.py
> @@ -5,6 +5,7 @@
>   # SPDX-License-Identifier: GPL-2.0-or-later
>   
>   from qemu_test import Asset, skipSlowTest
> +from qemu_test import skipFlakyTest
>   from replay_kernel import ReplayKernelBase
>   
>   
> @@ -16,6 +17,7 @@ class MipsReplay(ReplayKernelBase):
>            'linux-image-2.6.32-5-4kc-malta_2.6.32-48_mips.deb'),
>           '16ca524148afb0626f483163e5edf352bc1ab0e4fc7b9f9d473252762f2c7a43')
>   
> +    @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/2013")
>       def test_replay_mips_malta(self):
>           self.set_machine('malta')
>           kernel_path = self.archive_extract(self.ASSET_KERNEL_2_63_2,
> diff --git a/tests/functional/mips64el/test_replay.py b/tests/functional/mips64el/test_replay.py
> index 26a6ccff3f7..05cc585f854 100755
> --- a/tests/functional/mips64el/test_replay.py
> +++ b/tests/functional/mips64el/test_replay.py
> @@ -5,6 +5,7 @@
>   # SPDX-License-Identifier: GPL-2.0-or-later
>   
>   from qemu_test import Asset, skipUntrustedTest
> +from qemu_test import skipFlakyTest
>   from replay_kernel import ReplayKernelBase
>   
>   
> @@ -16,6 +17,7 @@ class Mips64elReplay(ReplayKernelBase):
>            'linux-image-2.6.32-5-5kc-malta_2.6.32-48_mipsel.deb'),
>           '35eb476f03be589824b0310358f1c447d85e645b88cbcd2ac02b97ef560f9f8d')
>   
> +    @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/2013")
>       def test_replay_mips64el_malta(self):
>           self.set_machine('malta')
>           kernel_path = self.archive_extract(self.ASSET_KERNEL_2_63_2,

Thanks, this also bugs me since a while already (not enough to send a patch 
yet, so I'm glad you did it now)!

Reviewed-by: Thomas Huth <thuth@redhat.com>



  parent reply	other threads:[~2025-10-31 11:17 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-31  9:41 [PATCH 0/2] tests/functional: Disable flaky MIPS tests on our GitLab CI Philippe Mathieu-Daudé
2025-10-31  9:41 ` [PATCH 1/2] tests/functional: Mark the MIPS replay tests as flaky Philippe Mathieu-Daudé
2025-10-31 10:00   ` Richard Henderson
2025-10-31 10:19     ` Philippe Mathieu-Daudé
2025-10-31 11:16   ` Thomas Huth [this message]
2025-10-31  9:41 ` [PATCH 2/2] tests/functional: Mark the MIPS Debian Wheezy " Philippe Mathieu-Daudé
2025-10-31 11:33   ` Thomas Huth
2025-10-31 13:30     ` Philippe Mathieu-Daudé
2025-10-31 13:35       ` Philippe Mathieu-Daudé
2025-10-31 15:11       ` Thomas Huth
2025-10-31 10:00 ` [PATCH 0/2] tests/functional: Disable flaky MIPS tests on our GitLab CI Richard Henderson
2025-10-31 11:50   ` Richard Henderson
2025-10-31 11:00 ` Philippe Mathieu-Daudé

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=35c01798-adeb-4f40-9667-cd223810b52b@redhat.com \
    --to=thuth@redhat.com \
    --cc=alex.bennee@linaro.org \
    --cc=aurelien@aurel32.net \
    --cc=jiaxun.yang@flygoat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /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).