* [RFC PATCH-for-5.2 v2] tests/acceptance: Disable Spartan-3A DSP 1800A test
@ 2020-11-09 8:12 Philippe Mathieu-Daudé
2020-11-09 8:13 ` Philippe Mathieu-Daudé
0 siblings, 1 reply; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-09 8:12 UTC (permalink / raw)
To: qemu-devel
Cc: Thomas Huth, Thomas Huth, Alex Bennée, Edgar E . Iglesias,
Philippe Mathieu-Daudé, Wainer dos Santos Moschetta,
Pavel Dovgalyuk, Cleber Rosa, Paolo Bonzini,
Philippe Mathieu-Daudé
This test is regularly failing on CI:
(05/34) tests/acceptance/boot_linux_console.py:BootLinuxConsole.test_microblaze_s3adsp1800:
Linux version 4.11.3 (thuth@thuth.remote.csb) (gcc version 6.4.0 (Buildroot 2018.05.2) ) #5 Tue Dec 11 11:56:23 CET 2018
...
Freeing unused kernel memory: 1444K
This architecture does not have kernel memory protection.
[nothing happens here]
Runner error occurred: Timeout reached (90.91 s)
Do not run it automatically (it can still be run setting
AVOCADO_TIMEOUT_EXPECTED=1 environment variable).
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
v2: Include failure log
---
tests/acceptance/boot_linux_console.py | 1 +
tests/acceptance/replay_kernel.py | 1 +
2 files changed, 2 insertions(+)
diff --git a/tests/acceptance/boot_linux_console.py b/tests/acceptance/boot_linux_console.py
index 8f433a67f84..010e8790c0f 100644
--- a/tests/acceptance/boot_linux_console.py
+++ b/tests/acceptance/boot_linux_console.py
@@ -1025,6 +1025,7 @@ def test_m68k_mcf5208evb(self):
tar_hash = 'ac688fd00561a2b6ce1359f9ff6aa2b98c9a570c'
self.do_test_advcal_2018('07', tar_hash, 'sanity-clause.elf')
+ @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
def test_microblaze_s3adsp1800(self):
"""
:avocado: tags=arch:microblaze
diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py
index 00c228382bd..c1f5fa4de71 100644
--- a/tests/acceptance/replay_kernel.py
+++ b/tests/acceptance/replay_kernel.py
@@ -280,6 +280,7 @@ def test_m68k_mcf5208evb(self):
file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
self.do_test_advcal_2018(file_path, 'sanity-clause.elf')
+ @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
def test_microblaze_s3adsp1800(self):
"""
:avocado: tags=arch:microblaze
--
2.26.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [RFC PATCH-for-5.2 v2] tests/acceptance: Disable Spartan-3A DSP 1800A test
2020-11-09 8:12 [RFC PATCH-for-5.2 v2] tests/acceptance: Disable Spartan-3A DSP 1800A test Philippe Mathieu-Daudé
@ 2020-11-09 8:13 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-11-09 8:13 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: Thomas Huth, Thomas Huth, Edgar E . Iglesias,
Wainer dos Santos Moschetta, Pavel Dovgalyuk, Cleber Rosa,
Paolo Bonzini, Alex Bennée
On 11/9/20 9:12 AM, Philippe Mathieu-Daudé wrote:
> This test is regularly failing on CI:
>
> (05/34) tests/acceptance/boot_linux_console.py:BootLinuxConsole.test_microblaze_s3adsp1800:
> Linux version 4.11.3 (thuth@thuth.remote.csb) (gcc version 6.4.0 (Buildroot 2018.05.2) ) #5 Tue Dec 11 11:56:23 CET 2018
> ...
> Freeing unused kernel memory: 1444K
> This architecture does not have kernel memory protection.
> [nothing happens here]
> Runner error occurred: Timeout reached (90.91 s)
>
> Do not run it automatically (it can still be run setting
> AVOCADO_TIMEOUT_EXPECTED=1 environment variable).
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> v2: Include failure log
I incorrectly used "RFC" in subject, sorry.
> ---
> tests/acceptance/boot_linux_console.py | 1 +
> tests/acceptance/replay_kernel.py | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/tests/acceptance/boot_linux_console.py b/tests/acceptance/boot_linux_console.py
> index 8f433a67f84..010e8790c0f 100644
> --- a/tests/acceptance/boot_linux_console.py
> +++ b/tests/acceptance/boot_linux_console.py
> @@ -1025,6 +1025,7 @@ def test_m68k_mcf5208evb(self):
> tar_hash = 'ac688fd00561a2b6ce1359f9ff6aa2b98c9a570c'
> self.do_test_advcal_2018('07', tar_hash, 'sanity-clause.elf')
>
> + @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
> def test_microblaze_s3adsp1800(self):
> """
> :avocado: tags=arch:microblaze
> diff --git a/tests/acceptance/replay_kernel.py b/tests/acceptance/replay_kernel.py
> index 00c228382bd..c1f5fa4de71 100644
> --- a/tests/acceptance/replay_kernel.py
> +++ b/tests/acceptance/replay_kernel.py
> @@ -280,6 +280,7 @@ def test_m68k_mcf5208evb(self):
> file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
> self.do_test_advcal_2018(file_path, 'sanity-clause.elf')
>
> + @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
> def test_microblaze_s3adsp1800(self):
> """
> :avocado: tags=arch:microblaze
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-11-09 8:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-09 8:12 [RFC PATCH-for-5.2 v2] tests/acceptance: Disable Spartan-3A DSP 1800A test Philippe Mathieu-Daudé
2020-11-09 8:13 ` Philippe Mathieu-Daudé
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).