qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [RFC PATCH] tests/avocado: push default timeout to QemuBaseTest


From: Richard Henderson
Subject: Re: [RFC PATCH] tests/avocado: push default timeout to QemuBaseTest
Date: Tue, 16 Aug 2022 12:45:46 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0

On 8/16/22 08:38, Alex Bennée wrote:
All of the QEMU tests eventually end up derrived from this class. Move
the default timeout from LinuxTest to ensure we catch them all.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
  tests/avocado/avocado_qemu/__init__.py | 5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/avocado/avocado_qemu/__init__.py 
b/tests/avocado/avocado_qemu/__init__.py
index ed4853c805..9d17a287cf 100644
--- a/tests/avocado/avocado_qemu/__init__.py
+++ b/tests/avocado/avocado_qemu/__init__.py
@@ -227,6 +227,10 @@ def exec_command_and_wait_for_pattern(test, command,
      _console_interaction(test, success_message, failure_message, command + 
'\r')
class QemuBaseTest(avocado.Test):
+
+    # default timeout for all tests, can be overridden
+    timeout = 900
+
      def _get_unique_tag_val(self, tag_name):
          """
          Gets a tag value, if unique for a key
@@ -512,7 +516,6 @@ class LinuxTest(LinuxSSHMixIn, QemuSystemTest):
      to start with than the more vanilla `QemuSystemTest` class.
      """
- timeout = 900

Is 15 minutes really a reasonable default?


r~

      distro = None
      username = 'root'
      password = 'password'




reply via email to

[Prev in Thread] Current Thread [Next in Thread]