Merge pull request #237475 from tbaggaley/master

test-driver: respect timeout in wait_until_fails
This commit is contained in:
Jacek Galowicz 2023-06-14 17:59:49 +02:00 committed by GitHub
commit 0b62a4642d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -641,7 +641,7 @@ class Machine:
return status != 0
with self.nested(f"waiting for failure: {command}"):
retry(check_failure)
retry(check_failure, timeout)
return output
def wait_for_shutdown(self) -> None: