diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-24 09:37:33 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-24 09:37:45 +0100 |
commit | b50f19140fbd97d5976289750d642af0c1fb1ef5 (patch) | |
tree | dcb1786ff2045c47c9a83075b3b6329f91475d9c /scripts | |
parent | 08067578ec195e470422ef773536ecb51298555e (diff) | |
download | vyos-build-b50f19140fbd97d5976289750d642af0c1fb1ef5.tar.gz vyos-build-b50f19140fbd97d5976289750d642af0c1fb1ef5.zip |
Testsuite: increase smoketest timeout as we do more and more tests
(cherry picked from commit c79c13cee6ac86ad68853887a67b93dfe17bdc5b)
Diffstat (limited to 'scripts')
-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 177adf2f..5c297792 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -330,7 +330,7 @@ try: i = c.expect(['\n +Invalid command:', '\n +Set failed', 'No such file or directory', - r'\n\S+@\S+[$#]'], timeout=3600) + r'\n\S+@\S+[$#]'], timeout=7200) if i==0: raise Exception('Invalid command detected') @@ -341,7 +341,7 @@ try: raise Exception("WTF? did not find VyOS smoketest, this should be an exception") c.sendline('echo EXITCODE:$\x16?') - i = c.expect(['EXITCODE:0', 'EXITCODE:\d+'], timeout=10) + i = c.expect(['EXITCODE:0', 'EXITCODE:\d+'], timeout=20) if i==0: log.info('Smoketest finished successfully!') pass |