diff options
author | Cédric Le Goater <clg@redhat.com> | 2024-07-22 10:55:47 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-07-22 13:56:11 +0200 |
commit | 9bde5bb2adcecb8e67e2c0661efc405fbf74e496 (patch) | |
tree | a0de4555b4bdb63e28b6782431c8fe5e9afb2dd2 | |
parent | 322a2e33f46221995999408472c150c5dfba31f4 (diff) |
tests/avocado/machine_aspeed.py: Increase timeout for TPM test
On some runners, test_arm_ast2600_evb_buildroot_tpm can take longer
than 90s to complete. Increase timeout for these.
Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
Message-ID: <20240722085547.90650-1-clg@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/avocado/machine_aspeed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/machine_aspeed.py b/tests/avocado/machine_aspeed.py index 29e6b388a9..f8e263d37e 100644 --- a/tests/avocado/machine_aspeed.py +++ b/tests/avocado/machine_aspeed.py @@ -87,7 +87,7 @@ class AST1030Machine(QemuSystemTest): class AST2x00Machine(QemuSystemTest): - timeout = 90 + timeout = 180 def wait_for_console_pattern(self, success_message, vm=None): wait_for_console_pattern(self, success_message, |