1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Merge pull request #459 from Sticklyman1936/patch-1

gem5: fixed a typo
This commit is contained in:
marcbonnici 2017-08-08 16:48:58 +01:00 committed by GitHub
commit c6cdd8c0e6

View File

@ -462,7 +462,7 @@ class BaseGem5Device(object):
# gem5 might be slow. Hence, we need to make the ping timeout very long.
def ping(self):
self.logger.debug("Pinging gem5 to see if it is still alive")
self.gem5_shell('ls /', timeout=self.longdelay)
self.gem5_shell('ls /', timeout=self.long_delay)
# Additional Android-specific methods.
def forward_port(self, _): # pylint: disable=R0201