Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Workaround for the arm and aarch64 issues described earlier
Signed-off-by: Cleber Rosa <crosa@redhat.com>
  • Loading branch information
clebergnu committed May 21, 2019
1 parent c778e28 commit e1713f3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/acceptance/boot_linux_console.py
Expand Up @@ -10,6 +10,7 @@

import os
import logging
import socket

from avocado_qemu import Test
from avocado.utils import process
Expand Down Expand Up @@ -40,6 +41,7 @@ def wait_for_console_pattern(self, success_message,
msg = console.readline()
console_logger.debug(msg.strip())
if success_message in msg:
self.vm.console_socket.shutdown(socket.SHUT_RD)
break
if failure_message in msg:
fail = 'Failure message found in console: %s' % failure_message
Expand Down

0 comments on commit e1713f3

Please sign in to comment.