The www.helenos.org server is slow and downloading the Leon3 binary takes too long [*]. Do not include this test in the default suite.
Similarly to commit 471c97a69b: Currently the Avocado framework does not distinct the time spent downloading assets vs. the time spent running a test. With big assets (like a full VM image) the tests likely fail. This is a limitation known by the Avocado team. Until this issue get fixed, do not run this tests automatically. Tests can still be run setting the AVOCADO_TIMEOUT_EXPECTED environment variable. [*] https://travis-ci.org/stsquad/qemu/jobs/649599880#L4198 Reported-by: Alex Bennée <alex.ben...@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <phi...@redhat.com> --- tests/acceptance/machine_sparc_leon3.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/acceptance/machine_sparc_leon3.py b/tests/acceptance/machine_sparc_leon3.py index f77e210ccb..8dba5998a1 100644 --- a/tests/acceptance/machine_sparc_leon3.py +++ b/tests/acceptance/machine_sparc_leon3.py @@ -5,6 +5,7 @@ # This work is licensed under the terms of the GNU GPL, version 2 or # later. See the COPYING file in the top-level directory. +from avocado import skipUnless from avocado_qemu import Test from avocado_qemu import wait_for_console_pattern @@ -13,6 +14,7 @@ class Leon3Machine(Test): timeout = 60 + @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout') def test_leon3_helenos_uimage(self): """ :avocado: tags=arch:sparc -- 2.21.1