Home
last modified time | relevance | path

Searched refs:checkfor (Results 1 – 4 of 4) sorted by relevance

/external/autotest/server/site_tests/platform_Flashrom/
Dplatform_Flashrom.py30 def run_cmd(self, command, checkfor=''): argument
42 if checkfor and checkfor not in '\n'.join(output):
44 (checkfor, '\n'.join(output)))
49 self.run_cmd('flashrom -p host --wp-status', checkfor='is disabled')
51 self.run_cmd('flashrom -p ec --wp-status', checkfor='is disabled')
54 checkfor='is disabled')
/external/curl/
Dcurl-config.in40 --checkfor [version] check for (lib)curl of the specified version
103 --checkfor)
104 checkfor=$2
105 cmajor=`echo $checkfor | cut -d. -f1`
106 cminor=`echo $checkfor | cut -d. -f2`
109 cpatch=`echo $checkfor | cut -d. -f3 | cut -d- -f1`
131 echo "requested version $checkfor is newer than existing @CURLVERSION@"
/external/autotest/server/site_tests/platform_LabFirmwareUpdate/
Dplatform_LabFirmwareUpdate.py41 self._run_cmd('flashrom -p host --wp-status', checkfor='is disabled')
46 self._run_cmd('flashrom -p ec --wp-status', checkfor='is disabled')
48 def _run_cmd(self, command, checkfor=''): argument
55 if checkfor and checkfor not in ''.join(output):
57 (checkfor, ' '.join(output)))
64 lines = self._run_cmd('ectool version', checkfor='version')
/external/autotest/server/site_tests/platform_FlashErasers/
Dplatform_FlashErasers.py20 def run_cmd(self, command, checkfor=''): argument
32 if checkfor and checkfor not in '\n'.join(output):
34 (checkfor, '\n'.join(output)))