android_mt6572_jiabo/external/autotest/server/tests/reinstall/reinstall.py
2025-09-05 16:56:03 +08:00

13 lines
362 B
Python

import common
from autotest_lib.client.common_lib import error
from autotest_lib.server import afe_utils
from autotest_lib.server import test
class reinstall(test.test):
version = 1
def execute(self, host):
try:
afe_utils.machine_install_and_update_labels(host)
except Exception, e:
raise error.TestFail(str(e))