diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-07-03 13:32:54 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-07-03 13:32:56 +0200 |
commit | 3eed4cc98f9d0ff6e5404b298e05639f51ffd06e (patch) | |
tree | 98b832e1c91b41ea4a0aa3becac436764acc92b7 /scripts | |
parent | 49ca3d22e874497d05c46eb54a0380c90411419e (diff) | |
download | vyos-build-3eed4cc98f9d0ff6e5404b298e05639f51ffd06e.tar.gz vyos-build-3eed4cc98f9d0ff6e5404b298e05639f51ffd06e.zip |
Testsuite: increase smoketest timeout
On slow machines or with nested virtualisation the smoketests take really long
to execute - thus increase the timeout.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index b5ccc0b3..b79ed03f 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -295,7 +295,7 @@ try: i = c.expect(['\n +Invalid command:', '\n +Set failed', 'No such file or directory', - r'\n\S+@\S+[$#]'], timeout=1800) + r'\n\S+@\S+[$#]'], timeout=3600) if i==0: raise Exception('Invalid command detected') |