HomeSort by relevance Sort by last modified time
    Searched refs:checkfor (Results 1 - 4 of 4) sorted by null

  /external/autotest/server/site_tests/platform_Flashrom/
platform_Flashrom.py 30 def run_cmd(self, command, checkfor=''):
35 @param checkfor: If not emmpty, fail test if checkfor not in output.
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/
curl-config.in 40 --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_FlashErasers/
platform_FlashErasers.py 20 def run_cmd(self, command, checkfor=''):
25 @param checkfor: If not emmpty, fail test if checkfor not in output.
32 if checkfor and checkfor not in '\n'.join(output):
34 (checkfor, '\n'.join(output)))
  /external/autotest/server/site_tests/platform_LabFirmwareUpdate/
platform_LabFirmwareUpdate.py 41 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=''):
50 Optionally check output contain string 'checkfor'.
55 if checkfor and checkfor not in ''.join(output):
57 (checkfor, ' '.join(output)))
64 lines = self._run_cmd('ectool version', checkfor='version')

Completed in 155 milliseconds