summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-24 09:37:33 +0100
committerChristian Poessinger <christian@poessinger.com>2021-01-24 09:37:33 +0100
commitc79c13cee6ac86ad68853887a67b93dfe17bdc5b (patch)
treec0bc865780f643440a16d01640682e98f743e358
parent32d564eb3c3ba1b9dbc2e366e8ba7cc56d145e22 (diff)
downloadvyos-build-c79c13cee6ac86ad68853887a67b93dfe17bdc5b.tar.gz
vyos-build-c79c13cee6ac86ad68853887a67b93dfe17bdc5b.zip
Testsuite: increase smoketest timeout as we do more and more tests
-rwxr-xr-xscripts/check-qemu-install4
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