aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2024-08-06 09:28:12 +1000
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2024-08-20 00:49:13 +0200
commit4a85f23157f7ff766608c1373b71a97513215257 (patch)
tree8df5bfefd9904dcb8cdf76c864cfc2187bb72139
parente922abf5c0e40eb451434c4121b730c8a19d80d4 (diff)
downloadqemu-4a85f23157f7ff766608c1373b71a97513215257.zip
qemu-4a85f23157f7ff766608c1373b71a97513215257.tar.gz
qemu-4a85f23157f7ff766608c1373b71a97513215257.tar.bz2
tests/avocado: exec_command should not consume console output
_console_interaction reads data from the console even when there is only an input string to send, and no output data to wait on. This can cause lines to be missed by wait_for_console_pattern calls that follows an exec_command. Fix this by not reading the console if there is no pattern to wait for. This solves occasional hangs in ppc_hv_tests.py, usually when run on KVM hosts that are fast enough to output important lines quickly enough to be consumed by exec_command, so they get missed by subsequent wait for pattern calls. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-ID: <20240805232814.267843-2-npiggin@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r--tests/avocado/avocado_qemu/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/avocado/avocado_qemu/__init__.py b/tests/avocado/avocado_qemu/__init__.py
index a3da2a9..ef93561 100644
--- a/tests/avocado/avocado_qemu/__init__.py
+++ b/tests/avocado/avocado_qemu/__init__.py
@@ -135,6 +135,13 @@ def _console_interaction(test, success_message, failure_message,
vm.console_socket.sendall(send_string.encode())
if not keep_sending:
send_string = None # send only once
+
+ # Only consume console output if waiting for something
+ if success_message is None and failure_message is None:
+ if send_string is None:
+ break
+ continue
+
try:
msg = console.readline().decode().strip()
except UnicodeDecodeError: