1 # Copyright (c) 2014 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 """ 6 hardware_ProbeComponents runs "gooftool probe" command. The results will be 7 provided back to Google by the OEMs/ODMs who are qualifying new hardware 8 components and used to generate a new HWID. 9 """ 10 11 import logging 12 from autotest_lib.client.bin import test, utils 13 14 class hardware_ProbeComponents(test.test): 15 """Logs "gooftool probe" command output""" 16 version = 1 17 18 19 def run_once(self): 20 probe_results = utils.system_output('gooftool probe') 21 logging.info(probe_results) 22 return 23