Skip to content

Commit b48580a

Browse files
philmdstsquad
authored andcommitted
tests/acceptance: Disable Spartan-3A DSP 1800A test
This test is regularly failing on CI: (05/34) tests/acceptance/boot_linux_console.py:BootLinuxConsole.test_microblaze_s3adsp1800: Linux version 4.11.3 ([email protected]) (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) This is a regression. Until someone figure out the problem, disable the test to keep CI pipeline useful. Signed-off-by: Philippe Mathieu-Daudé <[email protected]> Signed-off-by: Alex Bennée <[email protected]> Acked-by: Thomas Huth <[email protected]> Message-Id: <[email protected]> Message-Id: <[email protected]>
1 parent 811c74f commit b48580a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/acceptance/boot_linux_console.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import gzip
1414
import shutil
1515

16+
from avocado import skip
1617
from avocado import skipUnless
1718
from avocado_qemu import Test
1819
from avocado_qemu import exec_command_and_wait_for_pattern
@@ -1025,6 +1026,7 @@ def test_m68k_mcf5208evb(self):
10251026
tar_hash = 'ac688fd00561a2b6ce1359f9ff6aa2b98c9a570c'
10261027
self.do_test_advcal_2018('07', tar_hash, 'sanity-clause.elf')
10271028

1029+
@skip("Test currently broken") # Console stuck as of 5.2-rc1
10281030
def test_microblaze_s3adsp1800(self):
10291031
"""
10301032
:avocado: tags=arch:microblaze

tests/acceptance/replay_kernel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import logging
1515
import time
1616

17+
from avocado import skip
1718
from avocado import skipIf
1819
from avocado import skipUnless
1920
from avocado_qemu import wait_for_console_pattern
@@ -280,6 +281,7 @@ def test_m68k_mcf5208evb(self):
280281
file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
281282
self.do_test_advcal_2018(file_path, 'sanity-clause.elf')
282283

284+
@skip("Test currently broken") # Console stuck as of 5.2-rc1
283285
def test_microblaze_s3adsp1800(self):
284286
"""
285287
:avocado: tags=arch:microblaze

0 commit comments

Comments
 (0)