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""" 6hardware_ProbeComponents runs "gooftool probe" command. The results will be 7provided back to Google by the OEMs/ODMs who are qualifying new hardware 8components and used to generate a new HWID. 9""" 10 11import logging 12from autotest_lib.client.bin import test, utils 13 14class 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