All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Cc: qemu-devel@nongnu.org, "Eric Farman" <farman@linux.ibm.com>,
	"Peter Maydell" <peter.maydell@linaro.org>,
	"Leif Lindholm" <quic_llindhol@quicinc.com>,
	"Beraldo Leal" <bleal@redhat.com>,
	"Andrew Jeffery" <andrew@codeconstruct.com.au>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Marcin Juszkiewicz" <marcin.juszkiewicz@linaro.org>,
	"Pavel Dovgalyuk" <pavel.dovgaluk@ispras.ru>,
	"Thomas Huth" <thuth@redhat.com>,
	qemu-arm@nongnu.org, "Radoslaw Biernacki" <rad@semihalf.com>,
	"Yoshinori Sato" <ysato@users.sourceforge.jp>,
	"Eric Auger" <eric.auger@redhat.com>,
	"Halil Pasic" <pasic@linux.ibm.com>,
	qemu-s390x@nongnu.org,
	"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
	"Cédric Le Goater" <clg@kaod.org>,
	"Christian Borntraeger" <borntraeger@linux.ibm.com>,
	"Aurelien Jarno" <aurelien@aurel32.net>,
	"Cleber Rosa" <crosa@redhat.com>, "Joel Stanley" <joel@jms.id.au>
Subject: Re: [PATCH v2 4/7] tests/avocado: drop malta yamon tests
Date: Fri, 01 Dec 2023 12:49:26 +0000	[thread overview]
Message-ID: <87ttp25bqh.fsf@draig.linaro.org> (raw)
In-Reply-To: <45077c53-ed18-4821-bfbe-6dba3ca994d4@linaro.org> ("Philippe Mathieu-Daudé"'s message of "Fri, 1 Dec 2023 11:24:14 +0100")

Philippe Mathieu-Daudé <philmd@linaro.org> writes:

> Hi Alex,
>
> On 1/12/23 10:36, Alex Bennée wrote:
>> The assets are no longer available on the website so these are
>> blocking CI.
>> 
>
> How are these "blocking CI"? Missing artifact wasn't be fatal,
> is it now? Also, did the artifact cache got flushed? These tests
> pass locally, I disagree with removing them.
>
> I can send a patch using YAMON_PATH like we have with RESCUE_YL_PATH,
> but I still consider missing artifact shouldn't be an issue. We are
> missing the point of the Avocado cache and the possibility to manually
> add artifacts.

Sure but in this case the binaries are gone, you can't share them and no
one else can ever run the test. At that point it just becomes dead
weight in the repository. This doesn't stop you keeping your own branch
where old tests live on while close to a warm cache but it does somewhat
limit the use of the test to the wider community.

>
>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>> Cc: Philippe Mathieu-Daudé <philmd@linaro.org>
>> ---
>>   tests/avocado/machine_mips_malta.py | 37 -----------------------------
>>   1 file changed, 37 deletions(-)
>> diff --git a/tests/avocado/machine_mips_malta.py
>> b/tests/avocado/machine_mips_malta.py
>> index 959dcf5602..3a1ec85c20 100644
>> --- a/tests/avocado/machine_mips_malta.py
>> +++ b/tests/avocado/machine_mips_malta.py
>> @@ -122,40 +122,3 @@ def test_mips_malta_i6400_framebuffer_logo_8cores(self):
>>           :avocado: tags=mips:smp
>>           """
>>           self.do_test_i6400_framebuffer_logo(8)
>> -
>> -class MaltaMachine(QemuSystemTest):
>> -
>> -    def do_test_yamon(self):
>> -        rom_url = ('http://www.imgtec.com/tools/mips-tools/downloads/'
>> -                   'yamon/yamon-bin-02.22.zip')
>> -        rom_hash = '8da7ecddbc5312704b8b324341ee238189bde480'
>> -        zip_path = self.fetch_asset(rom_url, asset_hash=rom_hash)
>> -
>> -        archive.extract(zip_path, self.workdir)
>> -        yamon_path = os.path.join(self.workdir, 'yamon-02.22.bin')
>> -
>> -        self.vm.set_console()
>> -        self.vm.add_args('-bios', yamon_path)
>> -        self.vm.launch()
>> -
>> -        prompt =  'YAMON>'
>> -        pattern = 'YAMON ROM Monitor'
>> -        interrupt_interactive_console_until_pattern(self, pattern, prompt)
>> -        wait_for_console_pattern(self, prompt)
>> -        self.vm.shutdown()
>> -
>> -    def test_mipsel_malta_yamon(self):
>> -        """
>> -        :avocado: tags=arch:mipsel
>> -        :avocado: tags=machine:malta
>> -        :avocado: tags=endian:little
>> -        """
>> -        self.do_test_yamon()
>> -
>> -    def test_mips64el_malta_yamon(self):
>> -        """
>> -        :avocado: tags=arch:mips64el
>> -        :avocado: tags=machine:malta
>> -        :avocado: tags=endian:little
>> -        """
>> -        self.do_test_yamon()

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro

  reply	other threads:[~2023-12-01 12:49 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-01  9:36 [PATCH v2 0/7] final fixes for 8.2 Alex Bennée
2023-12-01  9:36 ` [PATCH v2 1/7] gdbstub: use a better signal when we halt for IO reasons Alex Bennée
2023-12-01  9:36 ` [PATCH v2 2/7] docs/devel: rationalise unstable gitlab tests under FLAKY_TESTS Alex Bennée
2023-12-01  9:36 ` [PATCH v2 3/7] tests/avocado: drop BootLinuxConsole.test_mips_malta_cpio test Alex Bennée
2023-12-01 11:27   ` Stefan Hajnoczi
2023-12-01 13:45   ` Philippe Mathieu-Daudé
2023-12-01 13:57     ` Philippe Mathieu-Daudé
2023-12-01 13:59       ` Philippe Mathieu-Daudé
2023-12-01 15:14       ` Alex Bennée
2023-12-01  9:36 ` [PATCH v2 4/7] tests/avocado: drop malta yamon tests Alex Bennée
2023-12-01 10:24   ` Philippe Mathieu-Daudé
2023-12-01 12:49     ` Alex Bennée [this message]
2023-12-01 13:22       ` Philippe Mathieu-Daudé
2023-12-01 14:05       ` Philippe Mathieu-Daudé
2023-12-01 15:16         ` Alex Bennée
2023-12-01  9:36 ` [PATCH v2 5/7] tests/avocado: tag sbsa tests as tcg only Alex Bennée
2023-12-01 10:26   ` Philippe Mathieu-Daudé
2023-12-01  9:36 ` [PATCH v2 6/7] gitlab: build the correct microblaze target Alex Bennée
2023-12-01 10:24   ` Philippe Mathieu-Daudé
2023-12-04  7:54   ` Thomas Huth
2023-12-04 12:40     ` Alex Bennée
2023-12-04 12:43       ` Thomas Huth
2023-12-04 12:48         ` Cédric Le Goater
2023-12-04 13:32           ` Thomas Huth
2023-12-01  9:36 ` [PATCH v2 7/7] gitlab: add optional job to run flaky avocado tests Alex Bennée
2023-12-01 10:28   ` Philippe Mathieu-Daudé
2023-12-01 13:30 ` [PATCH v2 0/7] final fixes for 8.2 Stefan Hajnoczi

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=87ttp25bqh.fsf@draig.linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=andrew@codeconstruct.com.au \
    --cc=aurelien@aurel32.net \
    --cc=bleal@redhat.com \
    --cc=borntraeger@linux.ibm.com \
    --cc=clg@kaod.org \
    --cc=crosa@redhat.com \
    --cc=eric.auger@redhat.com \
    --cc=farman@linux.ibm.com \
    --cc=joel@jms.id.au \
    --cc=marcin.juszkiewicz@linaro.org \
    --cc=pasic@linux.ibm.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-s390x@nongnu.org \
    --cc=quic_llindhol@quicinc.com \
    --cc=rad@semihalf.com \
    --cc=thuth@redhat.com \
    --cc=wainersm@redhat.com \
    --cc=ysato@users.sourceforge.jp \
    /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.