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

gem5: fixed a typo

Changed "self.longdelay" to "self.long_delay".
This commit is contained in:
Sascha Bischoff 2017-08-08 16:34:52 +01:00 committed by GitHub
parent 77bb14331f
commit 8cf4c259c0

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