summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-12-31 14:13:29 +0100
committerChristian Breunig <christian@breunig.cc>2024-12-31 14:20:32 +0100
commit20b20efcca3a7c1d5e7acc375e31afbc212784cf (patch)
tree11dd53a885ac67f6f6da110dc013063299a2d0b6 /scripts
parent085df7615aaded2a24f3668f51505dfe7d446660 (diff)
downloadvyos-build-20b20efcca3a7c1d5e7acc375e31afbc212784cf.tar.gz
vyos-build-20b20efcca3a7c1d5e7acc375e31afbc212784cf.zip
Testsuite: T861: boot system in serial console mode to get the full boot log
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-qemu-install6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index 00bdf080..0a5e3970 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -375,8 +375,10 @@ try:
toggleUEFISecureBoot(c)
try:
- c.expect('Automatic boot in', timeout=10)
- c.sendline('')
+ c.expect('Welcome to GRUB', timeout=10)
+ c.send(KEY_DOWN)
+ c.send(KEY_DOWN)
+ c.send(KEY_RETURN)
except pexpect.TIMEOUT:
log.warning('Did not find GRUB countdown window, ignoring')