support/scripts/boot-qemu-image.py: properly catch timeout
authorRomain Naour <romain.naour@gmail.com>
Sat, 20 Feb 2021 16:56:04 +0000 (17:56 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sat, 20 Feb 2021 21:44:29 +0000 (22:44 +0100)
commit03c3fbd81c51c7b0cc236362b3afc73e01219170
tree31b17889ed4da55968613174437cc25e7a779f95
parent4a95f38f306411ca750a676b81326dc7ec67bcaa
support/scripts/boot-qemu-image.py: properly catch timeout

As reported on IRC by sephthir, the gitlab test of the defconfig
qemu_sparc_ss10_defconfig doesn't error out while the system
is not working properly.

This is because we explicitly wait for the timeout as an expected
condition, but do not check for it. Indeed, pexpect.expect() returns
the index of the matching condition in the list of expected conditions,
but we just ignore the return code, so we are not able to differentiate
between a successful login (or prompt) from a timeout.

By default, pexepect.expect() raises the pexpect.TIMEOUT exception on a
timeout, and we are already prepared to catch and handle that exception.
But because pexpect.TIMEOUT is passed as an expected condition, the
exception is not raised.

Remove pexpect.TIMEOUT from the list of expected conditions, so that the
exception is properly raised again, and so that we can catch it.

The qemu_sparc_ss10_defconfig is already fixed by
4d16e6f5324f0285f51bfbb5a3503584f3b3ad12.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
[yann.morin.1998@free.fr: reword commit log]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
support/scripts/boot-qemu-image.py