1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-03-21 18:18:41 +00:00

idle: do not attempt to turn off screen on Linux

In the teardown, if screen_off was not set, only ensure that the
screen is on for Android targets.
This commit is contained in:
Sergei Trofimov 2017-05-15 10:53:11 +01:00
parent 1da244552f
commit ac86304f35

View File

@ -88,5 +88,6 @@ class IdleWorkload(Workload):
self.target.sleep(1)
if self.screen_off and self.old_screen_state:
self.target.ensure_screen_is_on()
elif not self.screen_off and not self.old_screen_state:
elif (self.target.os == 'android' and
not self.screen_off and not self.old_screen_state):
self.target.ensure_screen_is_off()