1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-04-05 09:20:03 +01:00

gem5: Update to telnet connection method

gem5 prints a string, to communicate which telnet port can be used to connect
to the gem5 system.  The exact string has recently changed. This commit ensures
both the old and new string are taken into account when devlib parses gem5
output to determine the telnet port.
This commit is contained in:
Anouk Van Laer 2018-03-07 17:34:47 +00:00 committed by Marc Bonnici
parent f515420387
commit 5001fae516

View File

@ -174,7 +174,11 @@ class Gem5SimulationPlatform(Platform):
# Open the stderr file
with open(self.stderr_filename, 'r') as f:
for line in f:
# Look for two different strings, exact wording depends on
# version of gem5
m = re.search(r"Listening for system connection on port (?P<port>\d+)", line)
if not m:
m = re.search(r"Listening for connections on port (?P<port>\d+)", line)
if m:
port = int(m.group('port'))
if port >= 3456 and port < 5900: