1 # Copyright 2017 The Chromium OS Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 import logging 6 import time 7 8 from autotest_lib.client.common_lib import error 9 from autotest_lib.client.common_lib.cros import cr50_utils 10 from autotest_lib.server import autotest, test 11 12 13 class firmware_Cr50UpdateScriptStress(test.test): 14 """ 15 Stress the Cr50 Update Script. 16 17 Clear the update state to force the device to retry the cr50 update. This 18 will not update cr50. It will just force the cr50-update script to get 19 the version and verify an update is not needed. If there are any reboots 20 caused by the update verification, then we know something failed. 21 22 This test is intended to be run with many iterations to ensure that the 23 update process is not flaky. 24 """ 25 version = 1 26 27 def run_once(self, host): 28 # Find the last cr50 update message already in /var/log/messages 29 last_message = cr50_utils.CheckForFailures(host, '') 30 31 # Clears the state and reboots the system to get the cr50-update to run 32 cr50_utils.ClearUpdateStateAndReboot(host) 33 34 cr50_utils.CheckForFailures(host, last_message) 35