From: Philippe Mathieu-Daudé Date: Mon, 28 Oct 2019 23:04:04 +0000 (-0400) Subject: tests/acceptance: Send on serial lines X-Git-Tag: qemu-xen-4.14.0~311^2~10 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6b5720d5b7609d4c0feb8edd930242bb9968c13e;p=qemu-xen.git tests/acceptance: Send on serial lines Some firmwares don't parse the control character and expect a . Signed-off-by: Philippe Mathieu-Daudé Message-Id: <20191028073441.6448-5-philmd@redhat.com> Reviewed-by: Cleber Rosa Tested-by: Cleber Rosa Signed-off-by: Cleber Rosa --- diff --git a/tests/acceptance/boot_linux_console.py b/tests/acceptance/boot_linux_console.py index 8897e0c253..f9b77af359 100644 --- a/tests/acceptance/boot_linux_console.py +++ b/tests/acceptance/boot_linux_console.py @@ -34,7 +34,7 @@ class BootLinuxConsole(Test): failure_message='Kernel panic - not syncing') def exec_command_and_wait_for_pattern(self, command, success_message): - command += '\n' + command += '\r' self.vm.console_socket.sendall(command.encode()) wait_for_console_pattern(self, success_message)