diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-13 14:08:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-13 14:08:13 +0200 |
commit | aeeda20529b1a80b669525e782320f324f23224d (patch) | |
tree | 2b9b1bb4c88f4cb823ba0a6d2fad7496d11c6bb1 /scripts/check-qemu-install | |
parent | 55f26e8632b1dc8f99433d2c5ea80e8366d47249 (diff) | |
download | vyos-build-aeeda20529b1a80b669525e782320f324f23224d.tar.gz vyos-build-aeeda20529b1a80b669525e782320f324f23224d.zip |
Testsuite: wait 600 seconds after kvm start for prompt
This is required to test via a GitHub action
Diffstat (limited to 'scripts/check-qemu-install')
-rwxr-xr-x | scripts/check-qemu-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index 1daaa6be..6c69ce30 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -211,9 +211,9 @@ try: log.warning('Did not find GRUB countdown window, ignoring') log.info('Waiting for login prompt') - c.expect('[Ll]ogin:', timeout=300) + c.expect('[Ll]ogin:', timeout=600) c.sendline('vyos') - c.expect('[Pp]assword:', timeout=10) + c.expect('[Pp]assword:', timeout=20) c.sendline('vyos') c.expect(r'vyos@vyos:~\$') log.info('Logged in!') |