Merge pull request #237475 from tbaggaley/master

test-driver: respect timeout in wait_until_fails

authored by Jacek Galowicz and committed by GitHub 0b62a464 ad394839

+1 -1
+1 -1
nixos/lib/test-driver/test_driver/machine.py
··· 641 641 return status != 0 642 642 643 643 with self.nested(f"waiting for failure: {command}"): 644 - retry(check_failure) 644 + retry(check_failure, timeout) 645 645 return output 646 646 647 647 def wait_for_shutdown(self) -> None: